remaster/src/func/check_user

18 lines
307 B
Plaintext
Raw Normal View History

#!/bin/bash
#remaster lib
2018-05-07 00:56:46 +00:00
[ -d "<LIBDIR>" ] || { echo "LIBDIR not exist"; exit 1; }
#check_user
function check_user() {
#check root
[ "`whoami`" == "root" ] || {
echo "### ERROR ### Remaster need ROOT permision!"
return 10
}
}
2018-05-10 15:13:19 +00:00
2018-05-10 22:04:02 +00:00
#this func is standalone executable
2018-05-10 15:13:19 +00:00
[ -n "$1" ] && {
2018-05-10 22:04:02 +00:00
check_user $@
2018-05-10 15:13:19 +00:00
}