diff options
Diffstat (limited to 'scripts/install/install-image-existing')
-rwxr-xr-x | scripts/install/install-image-existing | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/scripts/install/install-image-existing b/scripts/install/install-image-existing index 080313bd..ffb5bba3 100755 --- a/scripts/install/install-image-existing +++ b/scripts/install/install-image-existing @@ -54,8 +54,9 @@ is_amazon_ec2_ami () { fi } -if [ `whoami` != 'root' ] ; then - failure_exit 'This script must be run with root privileges.' +if [ $(id -u) != 0 ]; then + echo "Image installation requires root privileges!" + exit 1 fi # On image-installed systems, the image name can be found as the |