mirror of
https://github.com/MysticRyuujin/guac-install.git
synced 2023-10-10 13:36:56 +02:00
Reorder apt-get & SERVER
The SERVER variable requires curl and jq to be installed but it was being set before the apt-get install
This commit is contained in:
parent
169ab6d302
commit
54a62c5cf2
@ -2,7 +2,6 @@
|
||||
# WORKING ON UBUNTU 16.04 LTS
|
||||
|
||||
VERSION="0.9.12"
|
||||
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,6 +10,9 @@ read -s -p "Enter the password that will be used for the Guacamole database: " G
|
||||
apt-get update
|
||||
apt-get install docker.io mysql-client wget jq curl
|
||||
|
||||
# Get perfered download server
|
||||
SERVER=$(curl -s 'https://www.apache.org/dyn/closer.cgi?as_json=1' | jq --raw-output '.preferred|rtrimstr("/")')
|
||||
|
||||
# Download the guacamole auth files for MySQL
|
||||
wget ${SERVER}/incubator/guacamole/${VERSION}-incubating/binary/guacamole-auth-jdbc-${VERSION}-incubating.tar.gz
|
||||
tar -xzf guacamole-auth-jdbc-${VERSION}-incubating.tar.gz
|
||||
|
Loading…
Reference in New Issue
Block a user