mirror of
https://github.com/MysticRyuujin/guac-install.git
synced 2023-10-10 13:36:56 +02:00
Add root/sudo check
Add root/sudo check thanks to @bmullan
This commit is contained in:
parent
a43a3c8327
commit
4ae4546d6d
@ -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"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user