diff options
author | Francis Rowe <info@gluglug.org.uk> | 2014-11-24 13:21:16 (EST) |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2014-11-24 13:21:16 (EST) |
commit | ce8306ffeb9cb69d5bef70ce1edfe02a4cfa7fc7 (patch) | |
tree | 8c7c4c3aebafb01d2ab80ed5083b795bd2c743c8 /lenovobios_secondflash | |
parent | 92a3bcb85ffa10d3216fe95a39857d299807b737 (diff) | |
download | libreboot-ce8306ffeb9cb69d5bef70ce1edfe02a4cfa7fc7.zip libreboot-ce8306ffeb9cb69d5bef70ce1edfe02a4cfa7fc7.tar.gz libreboot-ce8306ffeb9cb69d5bef70ce1edfe02a4cfa7fc7.tar.bz2 |
lenovobios_secondflash: check if user is root
Diffstat (limited to 'lenovobios_secondflash')
-rwxr-xr-x | lenovobios_secondflash | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lenovobios_secondflash b/lenovobios_secondflash index c0a1cc8..9c5ec10 100755 --- a/lenovobios_secondflash +++ b/lenovobios_secondflash @@ -22,6 +22,11 @@ # set -u -e -v set -v +if [[ $EUID -ne 0 ]]; then + echo "This script must be run as root" + exit 1 +fi + # USE ROOT OR SUDO WHEN EXECUTING THIS # for T60 or X60 owners with Lenovo BIOS |