diff options
author | Francis Rowe <info@gluglug.org.uk> | 2014-11-24 18:16:36 +0000 |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2014-11-24 18:16:36 +0000 |
commit | 7b1b072d9aef3da652eca8d9fb038740c3c8fd53 (patch) | |
tree | c62cad400d2a00618fb441882fde883527b6fb28 | |
parent | 1ae732e2a7f4f214c772f27a292a3a7270cb3f4f (diff) | |
download | librebootfr-7b1b072d9aef3da652eca8d9fb038740c3c8fd53.tar.gz librebootfr-7b1b072d9aef3da652eca8d9fb038740c3c8fd53.zip |
flash: check if user is root
-rwxr-xr-x | flash | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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 # uses flashrom to flash the rom |