Added run-as-root check (disabled)

Add in-script elevation for testing.
This commit is contained in:
Asif Bacchus 2018-09-04 18:14:26 -06:00
parent 9cb04f39a0
commit 11b5c4f5c9

View File

@ -75,3 +75,20 @@ logFile=/var/log/borgbackup.log
### Do NOT edit below this line
## Ensure script is running as root (required) otherwise, exit
#if [ $(id -u) -ne 0 ]; then
# echo -e "\e[1;31m[`date +%Y-%m-%d` `date +%H:%M:%S`] This script MUST" \
# "be run as ROOT."
# echo -e "\e[4;31mScript aborted\e[0;31m.\e[0m"
# exit 1
#fi
### elevate script -- used during program testing
if [ $EUID != 0 ]; then
sudo "$0" "$scriptPath"
exit $?
fi