From a87aa0ffefae2542f51a1dcb4859fe26c09817b7 Mon Sep 17 00:00:00 2001 From: Itiligent <94789708+itiligent@users.noreply.github.com> Date: Sun, 29 Oct 2023 09:43:51 +1100 Subject: [PATCH] standardise log names --- 1-setup.sh | 2 +- guac-enterprise-build/install-mysql-backend-only.sh | 2 +- guac-enterprise-build/upgrade-mysql-backend-only.sh | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/1-setup.sh b/1-setup.sh index adc162c..ed2bc68 100644 --- a/1-setup.sh +++ b/1-setup.sh @@ -101,7 +101,7 @@ GUAC_URL=http://localhost:8080/guacamole/ DEFAULT_IP=$(ip addr show $(ip route | awk '/default/ { print $5 }') | grep "inet" | head -n 1 | awk '/inet/ {print $2}' | cut -d'/' -f1) # Install log Location -INSTALL_LOG="${DOWNLOAD_DIR}/guacamole_setup.log" +INSTALL_LOG="${DOWNLOAD_DIR}/guacamole_install.log" ####################################################################################################################### # Silent setup options - true/false or specific values below prevents prompt at install. EDIT TO SUIT ################# diff --git a/guac-enterprise-build/install-mysql-backend-only.sh b/guac-enterprise-build/install-mysql-backend-only.sh index 2c9ef6f..a320e55 100644 --- a/guac-enterprise-build/install-mysql-backend-only.sh +++ b/guac-enterprise-build/install-mysql-backend-only.sh @@ -60,7 +60,7 @@ GUAC_VERSION="1.5.3" GUAC_SOURCE_LINK="http://apache.org/dyn/closer.cgi?action=download&filename=guacamole/${GUAC_VERSION}" # Install log Location -INSTALL_LOG="${DOWNLOAD_DIR}/guacamole_${GUAC_VERSION}_mysql_install.log" +INSTALL_LOG="${DOWNLOAD_DIR}/mysql_install.log" clear diff --git a/guac-enterprise-build/upgrade-mysql-backend-only.sh b/guac-enterprise-build/upgrade-mysql-backend-only.sh index dbd6bac..67fb3c3 100644 --- a/guac-enterprise-build/upgrade-mysql-backend-only.sh +++ b/guac-enterprise-build/upgrade-mysql-backend-only.sh @@ -1,6 +1,6 @@ #!/bin/bash ###################################################################################################################### -# Guacamole appliance upgrade script +# Guacamole appliance mysql upgrade script # For Ubuntu / Debian / Raspbian # David Harrop # April 2023 @@ -61,7 +61,7 @@ OLD_GUAC_VERSION="1.5.0" GUAC_SOURCE_LINK="http://apache.org/dyn/closer.cgi?action=download&filename=guacamole/${NEW_GUAC_VERSION}" # Install log Location -INSTALL_LOG="${DOWNLOAD_DIR}/guacamole_${NEW_GUAC_VERSION}_mysql_install.log" +INSTALL_LOG="${DOWNLOAD_DIR}/mysql_upgrade.log" # Database details GUAC_DB="guacamole_db"