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

79 lines
3.0 KiB
Bash
Raw Normal View History

#!/bin/bash
2017-08-22 04:55:35 +02:00
# Version Numbers of Guacamole and MySQL Connector/J to download
VERSION="0.9.13"
2017-11-12 18:11:22 +01:00
MCJVERSION="5.1.44"
2017-07-22 00:49:40 +02:00
2017-11-12 18:11:22 +01:00
# I'm assuming tomcat7, you can change it here...
TOMCAT="tomcat7"
2017-12-01 18:49:26 +01:00
# Set SERVER to be the preferred download server from the Apache CDN
SERVER="http://apache.org/dyn/closer.cgi?action=download&filename=guacamole/${VERSION}-incubating"
2017-02-04 04:19:36 +01:00
2017-08-22 04:55:35 +02:00
# Stop tomcat
service ${TOMCAT} stop
2017-02-04 04:19:36 +01:00
2017-12-01 18:49:26 +01:00
# Download Guacamole server
wget -O guacamole-server-${VERSION}-incubating.tar.gz ${SERVER}/source/guacamole-server-${VERSION}-incubating.tar.gz
if [ ! -f ./guacamole-server-${VERSION}-incubating.tar.gz ]; then
echo "Failed to download guacamole-server-${VERSION}-incubating.tar.gz"
echo "${SERVER}/source/guacamole-server-${VERSION}-incubating.tar.gz"
exit
fi
# Download Guacamole client
wget -O guacamole-${VERSION}-incubating.war ${SERVER}/binary/guacamole-${VERSION}-incubating.war
if [ ! -f ./guacamole-${VERSION}-incubating.war ]; then
echo "Failed to download guacamole-${VERSION}-incubating.war"
echo "${SERVER}/binary/guacamole-${VERSION}-incubating.war"
exit
fi
# Download SQL components
wget -O guacamole-auth-jdbc-${VERSION}-incubating.tar.gz ${SERVER}/binary/guacamole-auth-jdbc-${VERSION}-incubating.tar.gz
if [ ! -f ./guacamole-auth-jdbc-${VERSION}-incubating.tar.gz ]; then
echo "Failed to download guacamole-auth-jdbc-${VERSION}-incubating.tar.gz"
echo "${SERVER}/binary/guacamole-auth-jdbc-${VERSION}-incubating.tar.gz"
exit
fi
# Download the MySQL Connector/J
wget -O mysql-connector-java-${MCJVERSION}.tar.gz https://dev.mysql.com/get/Downloads/Connector-J/mysql-connector-java-${MCJVERSION}.tar.gz
if [ ! -f ./mysql-connector-java-${MCJVERSION}.tar.gz ]; then
echo "Failed to download guacamole-server-${VERSION}-incubating.tar.gz"
echo "https://dev.mysql.com/get/Downloads/Connector-J/mysql-connector-java-${MCJVERSION}.tar.gz"
exit
fi
# Upgrade Guacamole Server
tar -xzf guacamole-server-${VERSION}-incubating.tar.gz
cd guacamole-server-${VERSION}-incubating
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
2017-03-31 04:10:52 +02:00
mv guacamole-${VERSION}-incubating.war /etc/guacamole/guacamole.war
2017-02-04 04:19:36 +01:00
2017-12-01 18:49:26 +01:00
# Upgrade SQL Components
tar -xzf guacamole-auth-jdbc-${VERSION}-incubating.tar.gz
cp guacamole-auth-jdbc-${VERSION}-incubating/mysql/guacamole-auth-jdbc-mysql-${VERSION}-incubating.jar /etc/guacamole/extensions/
2017-07-22 00:49:40 +02:00
tar -xzf mysql-connector-java-${MCJVERSION}.tar.gz
cp mysql-connector-java-${MCJVERSION}/mysql-connector-java-${MCJVERSION}-bin.jar /etc/guacamole/lib/
rm -rf mysql-connector-java-${MCJVERSION}*
# Check if there is an schema upgrade file, if there is run it (will prompt for password)
if [ -f "guacamole-auth-jdbc-${VERSION}-incubating/mysql/schema/upgrade/upgrade-pre-${VERSION}.sql" ]
then
mysql -u root -p guacamole_db < guacamole-auth-jdbc-${VERSION}-incubating/mysql/schema/upgrade/upgrade-pre-${VERSION}.sql
fi
2017-02-04 04:19:36 +01:00
2017-08-22 04:55:35 +02:00
# Start tomcat
service ${TOMCAT} start
2017-02-04 04:19:36 +01:00
# Cleanup
rm -rf guacamole*