add run as root check
This commit is contained in:
parent
45958c8206
commit
71192f8732
|
@ -73,6 +73,12 @@ while [ $secs -gt 0 ]; do
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#Check if user is root
|
||||||
|
if ! [ "$(id -u)" = 0 ]; then
|
||||||
|
echo "You need to be root or have sudo privileges!"
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
# Test RAM size (4GB min) + CPUs (min 2)
|
# Test RAM size (4GB min) + CPUs (min 2)
|
||||||
#Check system resources
|
#Check system resources
|
||||||
printf "\n\nVerifying System Resources:"
|
printf "\n\nVerifying System Resources:"
|
||||||
|
|
Loading…
Reference in New Issue