2017-08-02 12:27:53 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2018-01-21 01:34:58 +01:00
|
|
|
# Try to get database from /etc/guacamole/guacamole.properties
|
|
|
|
DATABASE=$(grep -oP 'mysql-database:\K.*' /etc/guacamole/guacamole.properties | awk '{print $1}')
|
|
|
|
|
2018-01-20 15:23:04 +01:00
|
|
|
# Get MySQL root password
|
|
|
|
echo
|
|
|
|
while true
|
|
|
|
do
|
|
|
|
read -s -p "Enter MySQL ROOT Password: " mysqlrootpassword
|
|
|
|
export MYSQL_PWD=${mysqlrootpassword}
|
|
|
|
echo
|
2018-01-21 01:34:58 +01:00
|
|
|
mysql -u root ${DATABASE} -e"quit" && break
|
2018-01-20 15:23:04 +01:00
|
|
|
echo
|
|
|
|
done
|
|
|
|
echo
|
|
|
|
|
2018-02-11 18:24:31 +01:00
|
|
|
# Version Numbers of Guacamole to download
|
2018-01-21 01:34:58 +01:00
|
|
|
GUACVERSION="0.9.14"
|
2018-01-20 15:23:04 +01:00
|
|
|
|
|
|
|
# Get Tomcat Version
|
|
|
|
TOMCAT=$(ls /etc/ | grep tomcat)
|
2017-07-22 00:49:40 +02:00
|
|
|
|
2018-01-20 15:23:04 +01:00
|
|
|
# Get Current Guacamole Version
|
|
|
|
OLDVERSION=$(grep -oP 'Guacamole.API_VERSION = "\K[0-9\.]+' /var/lib/${TOMCAT}/webapps/guacamole/guacamole-common-js/modules/Version.js)
|
2017-08-02 13:24:36 +02:00
|
|
|
|
2017-12-01 18:49:26 +01:00
|
|
|
# Set SERVER to be the preferred download server from the Apache CDN
|
2018-01-21 01:34:58 +01:00
|
|
|
SERVER="http://apache.org/dyn/closer.cgi?action=download&filename=guacamole/${GUACVERSION}"
|
2017-02-04 04:19:36 +01:00
|
|
|
|
2017-08-22 04:55:35 +02:00
|
|
|
# Stop tomcat
|
2017-08-02 13:24:36 +02:00
|
|
|
service ${TOMCAT} stop
|
2017-02-04 04:19:36 +01:00
|
|
|
|
2017-12-01 18:49:26 +01:00
|
|
|
# Download Guacamole server
|
2018-01-21 01:34:58 +01:00
|
|
|
wget -O guacamole-server-${GUACVERSION}.tar.gz ${SERVER}/source/guacamole-server-${GUACVERSION}.tar.gz
|
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
echo "Failed to download guacamole-server-${GUACVERSION}.tar.gz"
|
|
|
|
echo "${SERVER}/source/guacamole-server-${GUACVERSION}.tar.gz"
|
2017-12-01 18:49:26 +01:00
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Download Guacamole client
|
2018-01-21 01:34:58 +01:00
|
|
|
wget -O guacamole-${GUACVERSION}.war ${SERVER}/binary/guacamole-${GUACVERSION}.war
|
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
echo "Failed to download guacamole-${GUACVERSION}.war"
|
|
|
|
echo "${SERVER}/binary/guacamole-${GUACVERSION}.war"
|
2017-12-01 18:49:26 +01:00
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Download SQL components
|
2018-01-21 01:34:58 +01:00
|
|
|
wget -O guacamole-auth-jdbc-${GUACVERSION}.tar.gz ${SERVER}/binary/guacamole-auth-jdbc-${GUACVERSION}.tar.gz
|
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
echo "Failed to download guacamole-auth-jdbc-${GUACVERSION}.tar.gz"
|
|
|
|
echo "${SERVER}/binary/guacamole-auth-jdbc-${GUACVERSION}.tar.gz"
|
2017-12-01 18:49:26 +01:00
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Upgrade Guacamole Server
|
2018-01-21 01:34:58 +01:00
|
|
|
tar -xzf guacamole-server-${GUACVERSION}.tar.gz
|
|
|
|
cd guacamole-server-${GUACVERSION}
|
2017-02-04 04:19:36 +01:00
|
|
|
./configure --with-init-dir=/etc/init.d
|
|
|
|
make
|
|
|
|
make install
|
|
|
|
ldconfig
|
|
|
|
systemctl enable guacd
|
|
|
|
cd ..
|
|
|
|
|
2017-12-01 18:49:26 +01:00
|
|
|
# Upgrade Guacamole Client
|
2018-01-21 01:34:58 +01:00
|
|
|
mv guacamole-${GUACVERSION}.war /etc/guacamole/guacamole.war
|
2017-02-04 04:19:36 +01:00
|
|
|
|
2017-12-01 18:49:26 +01:00
|
|
|
# Upgrade SQL Components
|
2018-01-21 01:34:58 +01:00
|
|
|
tar -xzf guacamole-auth-jdbc-${GUACVERSION}.tar.gz
|
|
|
|
cp guacamole-auth-jdbc-${GUACVERSION}/mysql/guacamole-auth-jdbc-mysql-${GUACVERSION}.jar /etc/guacamole/extensions/
|
2017-07-22 00:49:40 +02:00
|
|
|
|
2018-01-20 15:23:04 +01:00
|
|
|
# Get list of SQL Upgrade Files
|
2018-01-21 01:34:58 +01:00
|
|
|
UPGRADEFILES=($(ls -1 guacamole-auth-jdbc-${GUACVERSION}/mysql/schema/upgrade/ | sort -V))
|
2018-01-20 15:23:04 +01:00
|
|
|
|
|
|
|
# Compare SQL Upgrage Files against old version, apply upgrades as needed
|
|
|
|
for FILE in ${UPGRADEFILES[@]}
|
|
|
|
do
|
|
|
|
FILEVERSION=$(echo ${FILE} | grep -oP 'upgrade-pre-\K[0-9\.]+(?=\.)')
|
|
|
|
if [[ $(echo -e "${FILEVERSION}\n${OLDVERSION}" | sort -V | head -n1) == ${OLDVERSION} && ${FILEVERSION} != ${OLDVERSION} ]]
|
|
|
|
then
|
2018-01-21 01:57:34 +01:00
|
|
|
echo "Patching ${DATABASE} with ${FILE}"
|
2018-01-21 01:34:58 +01:00
|
|
|
mysql -u root ${DATABASE} < guacamole-auth-jdbc-${GUACVERSION}/mysql/schema/upgrade/${FILE}
|
2018-01-20 15:23:04 +01:00
|
|
|
fi
|
|
|
|
done
|
2017-02-04 04:19:36 +01:00
|
|
|
|
2017-08-22 04:55:35 +02:00
|
|
|
# Start tomcat
|
2017-08-02 13:24:36 +02:00
|
|
|
service ${TOMCAT} start
|
2018-01-21 03:54:43 +01:00
|
|
|
service guacd start
|
2017-02-04 04:19:36 +01:00
|
|
|
|
|
|
|
# Cleanup
|
|
|
|
rm -rf guacamole*
|
2018-01-20 15:23:04 +01:00
|
|
|
unset MYSQL_PWD
|