virt-what.in: get effective uid in a portable way
authorAssaf Gordon <assafgordon@gmail.com>
Mon, 15 Sep 2014 18:58:19 +0000 (18:58 +0000)
committerRichard W.M. Jones <rjones@redhat.com>
Mon, 31 Oct 2016 10:14:49 +0000 (06:14 -0400)
$EUID is bash-specific. Use the POSIX-compatible 'id -u' instead.

(cherry picked from commit f82984fb84e9fed84aa71a50a1bfdfdc356771bd)

virt-what.in

index 1532b90..3feeb60 100644 (file)
@@ -74,8 +74,9 @@ exec_prefix=@exec_prefix@
 PATH="${root}@libexecdir@:${root}/sbin:${root}/usr/sbin:${PATH}"
 
 # Check we're running as root.
+EFFUID=$(id -u) || fail "failed to get current user id"
 
-if [ "x$root" = "x" ] && [ "$EUID" -ne 0 ]; then
+if [ "x$root" = "x" ] && [ "$EFFUID" -ne 0 ]; then
     fail "this script must be run as root"
 fi