Check to see if a script was run as root
April 16th, 2008 by Mitch Frazier in
If you need to make sure a script is run as root, add the following to the start of the script:
if [[ $UID -ne 0 ]]; then
echo "$0 must be run as root"
exit 1
fi
__________________________
Mitch Frazier is the System Administrator at Linux Journal.
Subscribe now!
Breaking News
| Charter Trades Privacy for Pocketbook | 18 hours 20 min ago |
| SSL Glitch Unlocks Debian, Ubuntu, & Others | 1 day 17 hours ago |
| MySpace Cashes in Spam to the Tune of $234 Million | 1 day 19 hours ago |
| Google Shoos the Trustbusters Away | 2 days 16 hours ago |
Featured Video
Linux Journal Gadget Guy, Shawn Powers, takes us through installing Ubuntu on a machine running Windows with the Wubi installer.
Delicious
Digg
Reddit
Newsvine
Technorati






I don't belive this is the
On April 17th, 2008 Anonymous (not verified) says:
I don't belive this is the right way of checking the user. This is as easy as your solution but is harder to bypass.
to bypass your code:
$ sh
$ export UID=0
run command
better way:
LUID=$(id -u)
if [[ $LUID -ne 0 ]]; then
echo "$0 must be run as root"
exit 1
fi
hope this help
bye
Not a problem, at least with bash
On April 22nd, 2008 Mitch Frazier says:
Bash won't let you do "export UID=0", UID is a read-only variable.
__________________________Mitch Frazier is the System Administrator at Linux Journal.
Effective User ID
On April 16th, 2008 lowkey (not verified) says:
You may find it more useful to check for the Effective User ID (EUID) rather than the plain User ID (UID). Then your script will work with SUID cases.
Just replace $UID with $EUID in the above snippet.
Maybe
On April 22nd, 2008 Mitch Frazier says:
As I recall the set-uid bit doesn't work on shell scripts, so unless your script is going to be run by a compiled program that has the set-uid bit set this wouldn't make any difference. Or am I missing something here?
__________________________Mitch Frazier is the System Administrator at Linux Journal.
bash != sh
On April 16th, 2008 Anonymous (not verified) says:
$ sudo sh -c 'set' | grep UID
SUDO_UID='1000'
$ sudo bash -c 'set' | grep UID
EUID=0
SUDO_UID=1000
UID=0
bash provides the environment variable 'UID', but other shells do not. Additionally '[[', while not bash specific is not present in all shells. A better solution (albeit, one dependent on 'id'):
uid=`id -u` && [ "$uid" = "0" ] ||
{ echo "must be root"; exit 1; }
Use #!/bin/bash
On April 22nd, 2008 Mitch Frazier says:
I always put "#!/bin/bash" at the top of my scripts, but beyond that I don't worry about non-bash environments. However, there certainly are some scripts that may run or need to run in an environment where bash does not exist.
__________________________Mitch Frazier is the System Administrator at Linux Journal.