1
0
mirror of https://github.com/MysticRyuujin/guac-install.git synced 2023-10-10 13:36:56 +02:00

grab SERVER after package install

Update to grab SERVER value after jq package is installed from repo
This commit is contained in:
Tyron 2017-04-05 12:12:34 -04:00 committed by GitHub
parent c4ebfaac2c
commit e151983a73

View File

@ -1,7 +1,6 @@
#!/bin/bash
VERSION="0.9.11"
SERVER=$(curl -s 'https://www.apache.org/dyn/closer.cgi?as_json=1' | jq --raw-output '.preferred|rtrimstr("/")')
# Grab a password for MySQL Root
read -s -p "Enter the password that will be used for MySQL Root: " mysqlrootpassword
@ -24,6 +23,8 @@ then
exit
fi
SERVER=$(curl -s 'https://www.apache.org/dyn/closer.cgi?as_json=1' | jq --raw-output '.preferred|rtrimstr("/")')
# Add GUACAMOLE_HOME to Tomcat8 ENV
echo "" >> /etc/default/tomcat8
echo "# GUACAMOLE EVN VARIABLE" >> /etc/default/tomcat8