remaster/src/func/check_user

13 lines
234 B
Plaintext
Raw Normal View History

#!/bin/bash
#remaster lib
2018-05-06 23:49:19 +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
}
}