mirror of
				https://git.koehlerweb.org/frodovdr/guac-install
				synced 2025-10-31 10:36:40 +01:00 
			
		
		
		
	Add root/sudo check
Add root/sudo check thanks to @bmullan
This commit is contained in:
		| @@ -1,5 +1,8 @@ | |||||||
| #!/bin/bash | #!/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 | # Version number of Guacamole to install | ||||||
| GUACVERSION="0.9.14" | GUACVERSION="0.9.14" | ||||||
|  |  | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user