1
0
mirror of https://git.koehlerweb.org/frodovdr/guac-install synced 2025-06-28 14:53:33 +02:00

Add root/sudo check

This commit is contained in:
Chase Wright
2018-09-01 09:38:30 -05:00
committed by GitHub
parent 1c22d77142
commit cc13a49d36

View File

@ -1,5 +1,8 @@
#!/bin/bash
# Check if user is root or sudo
if ! [ $(id -u) = 0 ]; then echo "Please run this script as sudo or root"; exit 1 ; fi
# Version number of Guacamole to install
GUACVERSION="0.9.14"