mirror of
https://github.com/itiligent/Easy-Guacamole-Installer.git
synced 2025-12-13 18:02:32 +00:00
Compare commits
3 commits
9915697260
...
50b2935457
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
50b2935457 | ||
|
|
3a357c0451 | ||
|
|
77826bd010 |
3 changed files with 9 additions and 9 deletions
12
1-setup.sh
12
1-setup.sh
|
|
@ -83,11 +83,11 @@ mkdir -p $DB_BACKUP_DIR
|
||||||
GITHUB="https://raw.githubusercontent.com/itiligent/Guacamole-Install/main"
|
GITHUB="https://raw.githubusercontent.com/itiligent/Guacamole-Install/main"
|
||||||
|
|
||||||
# Version of Guacamole to install
|
# Version of Guacamole to install
|
||||||
GUAC_VERSION="1.5.5"
|
GUAC_VERSION="1.6.0"
|
||||||
GUAC_SOURCE_LINK="http://apache.org/dyn/closer.cgi?action=download&filename=guacamole/${GUAC_VERSION}"
|
GUAC_SOURCE_LINK="http://apache.org/dyn/closer.cgi?action=download&filename=guacamole/${GUAC_VERSION}"
|
||||||
|
|
||||||
# MySQL Connector/J version to install
|
# MySQL Connector/J version to install
|
||||||
MYSQLJCON="9.1.0"
|
MYSQLJCON="9.3.0"
|
||||||
MYSQLJCON_SOURCE_LINK="https://dev.mysql.com/get/Downloads/Connector-J/mysql-connector-j-${MYSQLJCON}.tar.gz"
|
MYSQLJCON_SOURCE_LINK="https://dev.mysql.com/get/Downloads/Connector-J/mysql-connector-j-${MYSQLJCON}.tar.gz"
|
||||||
|
|
||||||
# Provide a specific MySQL version e.g. 11.1.2 or leave blank "" to use distro default MySQL packages.
|
# Provide a specific MySQL version e.g. 11.1.2 or leave blank "" to use distro default MySQL packages.
|
||||||
|
|
@ -570,12 +570,12 @@ fi
|
||||||
|
|
||||||
# Prompt to redirect http://root:8080 to http://root:8080/guacamole if not installing reverse proxy
|
# Prompt to redirect http://root:8080 to http://root:8080/guacamole if not installing reverse proxy
|
||||||
if [[ -z ${GUAC_URL_REDIR} ]] && [[ "${INSTALL_NGINX}" = false ]]; then
|
if [[ -z ${GUAC_URL_REDIR} ]] && [[ "${INSTALL_NGINX}" = false ]]; then
|
||||||
echo -e -n "FRONT END: Redirect Guacamole http://domain.root:8080 to /guacamole [y/n]? [default y]: "
|
echo -e -n "FRONT END: Redirect http://domain.root:8080 to /guacamole (Warning: redirect may break DUO) [y/n]? [default n]: "
|
||||||
read PROMPT
|
read PROMPT
|
||||||
if [[ ${PROMPT} =~ ^[Nn]$ ]]; then
|
if [[ ${PROMPT} =~ ^[Yy]$ ]]; then
|
||||||
GUAC_URL_REDIR=false
|
|
||||||
else
|
|
||||||
GUAC_URL_REDIR=true
|
GUAC_URL_REDIR=true
|
||||||
|
else
|
||||||
|
GUAC_URL_REDIR=false
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,7 @@
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
## For 1.6.0 release candidate install instructions see https://github.com/itiligent/Easy-Guacamole-Installer/issues/78
|
## For v1.6.0 installer notes and issues see https://github.com/itiligent/Easy-Guacamole-Installer/issues/78
|
||||||
|
|
||||||
## Introduction
|
## Introduction
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -50,10 +50,10 @@ mkdir -p $DOWNLOAD_DIR
|
||||||
chown -R $SUDO_USER:root $DOWNLOAD_DIR
|
chown -R $SUDO_USER:root $DOWNLOAD_DIR
|
||||||
|
|
||||||
# Version of Guacamole to upgrade to. See https://guacamole.apache.org/releases/ for latest version info.
|
# Version of Guacamole to upgrade to. See https://guacamole.apache.org/releases/ for latest version info.
|
||||||
NEW_GUAC_VERSION="1.5.5"
|
NEW_GUAC_VERSION="1.6.0"
|
||||||
|
|
||||||
# MySQL Connector/J version. See https://dev.mysql.com/downloads/connector/j/ for latest version number.
|
# MySQL Connector/J version. See https://dev.mysql.com/downloads/connector/j/ for latest version number.
|
||||||
NEW_MYSQLJCON="9.1.0"
|
NEW_MYSQLJCON="9.3.0"
|
||||||
|
|
||||||
# Get the currently installed Tomcat version.
|
# Get the currently installed Tomcat version.
|
||||||
TOMCAT_VERSION=$(ls /etc/ | grep tomcat)
|
TOMCAT_VERSION=$(ls /etc/ | grep tomcat)
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue