mirror of https://github.com/bol-van/zapret/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
266 B
13 lines
266 B
require_root()
|
|
{
|
|
local exe
|
|
echo \* checking privileges
|
|
[ $(id -u) -ne "0" ] && {
|
|
echo root is required
|
|
exe="$EXEDIR/$(basename "$0")"
|
|
exists sudo && exec sudo sh "$exe"
|
|
exists su && exec su root -c "sh \"$exe\""
|
|
echo su or sudo not found
|
|
exitp 2
|
|
}
|
|
}
|
|
|