From 7ec323391471651d567c6c7386500b137f00d682 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 3 Sep 2017 19:36:11 +0100 Subject: [PATCH 1/3] Release 170619 --- linuxgsm.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linuxgsm.sh b/linuxgsm.sh index 2c651e53c..378980070 100755 --- a/linuxgsm.sh +++ b/linuxgsm.sh @@ -20,7 +20,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="170710" +version="170803" shortname="core" gameservername="core" rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" From b5ea773e773caac0db676ce6fce1824def23ff78 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 3 Sep 2017 19:36:26 +0100 Subject: [PATCH 2/3] removed spaces --- lgsm/functions/alert.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/lgsm/functions/alert.sh b/lgsm/functions/alert.sh index edfc14cc8..44cdcb7d6 100644 --- a/lgsm/functions/alert.sh +++ b/lgsm/functions/alert.sh @@ -71,8 +71,6 @@ fn_alert_permissions(){ alertbody="${servicename} has permissions issues" } - - if [ "${alert}" == "permissions" ]; then fn_alert_permissions elif [ "${alert}" == "restart" ]; then From 9caf66dbde8e635482c21d2d5c82435b085129be Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 3 Sep 2017 19:48:45 +0100 Subject: [PATCH 3/3] moved " --- lgsm/functions/update_factorio.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/update_factorio.sh b/lgsm/functions/update_factorio.sh index af611e1b5..ba735d575 100644 --- a/lgsm/functions/update_factorio.sh +++ b/lgsm/functions/update_factorio.sh @@ -49,7 +49,7 @@ fn_update_factorio_currentbuild(){ fi # Get current build from logs - currentbuild=$(grep "Loading mod base" "${logdir}"/server/factorio-current.log 2> /dev/null|awk '{print $5}'|tail -1) + currentbuild=$(grep "Loading mod base" "${logdir}/server/factorio-current.log" 2> /dev/null|awk '{print $5}'|tail -1) if [ -z "${currentbuild}" ]; then fn_print_error_nl "Checking for update: factorio.com: Current build version not found" fn_script_log_error "Checking for update: factorio.com: Current build version not found" @@ -60,7 +60,7 @@ fn_update_factorio_currentbuild(){ command_stop.sh exitbypass=1 command_start.sh - currentbuild=$(grep "Loading mod base" "${logdir}"/server/factorio-current.log 2> /dev/null|awk '{print $5}'|tail -1) + currentbuild=$(grep "Loading mod base" "${logdir}/server/factorio-current.log" 2> /dev/null|awk '{print $5}'|tail -1) if [ -z "${currentbuild}" ]; then fn_print_fail_nl "Checking for update: factorio.com: Current build version still not found" fn_script_log_fatal "Checking for update: factorio.com: Current build version still not found"