From b5ba64a6c06f737d3f8c3d31b85ee58c76a62e18 Mon Sep 17 00:00:00 2001 From: Chase Wright Date: Fri, 13 Oct 2017 10:01:51 -0500 Subject: [PATCH] Remove Tomcat8 & Modify Dep Checks --- guac-install.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/guac-install.sh b/guac-install.sh index 80d4f10..453c934 100644 --- a/guac-install.sh +++ b/guac-install.sh @@ -7,10 +7,8 @@ MCJVERSION="5.1.43" # Update apt so we can search apt-cache for newest tomcat version supported apt update -# tomcat8 is newest, tomcat7 and tomcat6 should work too -if [ $(apt-cache search "^tomcat8$" | wc -l) -gt 0 ]; then - TOMCAT="tomcat8" -elif [ $(apt-cache search "^tomcat7$" | wc -l) -gt 0 ]; then +# tomcat8 seems to be broken, tomcat7 and tomcat6 should work +if [ $(apt-cache search "^tomcat7$" | wc -l) -gt 0 ]; then TOMCAT="tomcat7" else TOMCAT="tomcat6" @@ -30,7 +28,9 @@ read -s -p "Enter the password that will be used for the Guacamole database: " g echo # Ubuntu and Debian have different names of the libjpeg-turbo library for some reason... -if [ `egrep -c "ID=ubuntu" /etc/os-release` -gt 0 ] +source /etc/lsb-release + +if [ $DISTRIB_ID == "Ubuntu" ] then JPEGTURBO="libjpeg-turbo8-dev" else @@ -38,7 +38,7 @@ else fi # Ubuntu 16.10 has a different name for libpng12-dev for some reason... -if [ `egrep -c 'VERSION="16.10' /etc/os-release` -gt 0 ] +if [ $DISTRIB_RELEASE == "16.10" ] then LIBPNG="libpng-dev" else