From 5cc42e949e9c400deec130cf32abc22af3e051f6 Mon Sep 17 00:00:00 2001 From: Chase Wright Date: Sat, 20 Jan 2018 16:54:25 -0500 Subject: [PATCH] Quick Fix SERVER for Debian Closes #27 Need to write better fix when I get time --- guac-install.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/guac-install.sh b/guac-install.sh index 011e9d2..2fb3fba 100644 --- a/guac-install.sh +++ b/guac-install.sh @@ -1,7 +1,7 @@ #!/bin/bash # Version numbers of Guacamole and MySQL Connector/J to download -VERSION="0.9.14" +GUACVERSION="0.9.14" MCJVERSION="5.1.45" # Update apt so we can search apt-cache for newest tomcat version supported @@ -87,6 +87,9 @@ fi # Set SERVER to be the preferred download server from the Apache CDN SERVER="http://apache.org/dyn/closer.cgi?action=download&filename=guacamole/${VERSION}" +# Quick Fix SERVER +SERVER=$GUACSERVER + # Download Guacamole Server wget -O guacamole-server-${VERSION}.tar.gz ${SERVER}/source/guacamole-server-${VERSION}.tar.gz if [ ! -f ./guacamole-server-${VERSION}.tar.gz ]; then