Added root check to patch.sh and patch-fbc.sh

This commit is contained in:
Nostrus Admin 2024-11-23 10:01:44 -05:00 committed by Jai Luthra
parent 081807cc31
commit 5c7b570254
2 changed files with 18 additions and 0 deletions

View File

@ -4,6 +4,15 @@ set -euo pipefail ; # <- this semicolon and comment make options apply
# even when script is corrupt by CRLF line terminators (issue #75)
# empty line must follow this comment for immediate fail with CRLF newlines
# root check
if [ "$(id -u)" -ne 0 ]; then
echo
echo -e "Please run as root!"
echo
exit 1
fi
backup_path="/opt/nvidia/libnvidia-fbc-backup"
silent_flag=''
manual_driver_version=''

View File

@ -4,6 +4,15 @@ set -euo pipefail ; # <- this semicolon and comment make options apply
# even when script is corrupt by CRLF line terminators (issue #75)
# empty line must follow this comment for immediate fail with CRLF newlines
# root check
if [ "$(id -u)" -ne 0 ]; then
echo
echo -e "Please run as root!"
echo
exit 1
fi
backup_path="/opt/nvidia/libnvidia-encode-backup"
silent_flag=''
manual_driver_version=''