From 7e1203c8a68854e0e19cb82a2d7e31ce282567ad Mon Sep 17 00:00:00 2001 From: Chase Wright Date: Sun, 12 Mar 2017 13:35:19 -0500 Subject: [PATCH] Trimmed "/" from $SERVER --- docker-install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker-install.sh b/docker-install.sh index ab9f191..2bdb32c 100644 --- a/docker-install.sh +++ b/docker-install.sh @@ -2,6 +2,7 @@ # WORKING ON UBUNTU 16.04.1 LTS VERSION="0.9.11" +SERVER=$(curl -s 'https://www.apache.org/dyn/closer.cgi?as_json=1' | jq --raw-output '.preferred|rtrimstr("/")') read -s -p "Enter the password that will be used for MySQL Root: " MYSQLROOTPASSWORD read -s -p "Enter the password that will be used for the Guacamole database: " GUACDBUSERPASSWORD @@ -11,8 +12,7 @@ apt-get update apt-get install docker.io mysql-client wget jq curl # Download the guacamole auth files for MySQL -SERVER=$(curl -s 'https://www.apache.org/dyn/closer.cgi?as_json=1' | jq --raw-output '.preferred') -wget $SERVER/incubator/guacamole/${VERSION}-incubating/binary/guacamole-auth-jdbc-${VERSION}-incubating.tar.gz +wget ${SERVER}/incubator/guacamole/${VERSION}-incubating/binary/guacamole-auth-jdbc-${VERSION}-incubating.tar.gz tar -xzf guacamole-auth-jdbc-${VERSION}-incubating.tar.gz # Start MySQL