From 7afef2a16ed68ac6a58fad6f3093552fbb6555c2 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 19 Jun 2017 23:34:50 +0200 Subject: [PATCH 1/5] fixed syntax errors --- lgsm/functions/check_steamcmd.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lgsm/functions/check_steamcmd.sh b/lgsm/functions/check_steamcmd.sh index eb9e256d4..bb205592b 100644 --- a/lgsm/functions/check_steamcmd.sh +++ b/lgsm/functions/check_steamcmd.sh @@ -18,14 +18,14 @@ fn_install_steamcmd(){ fn_check_steamcmd_user(){ # Checks if steamuser is setup. if [ "${steamuser}" == "username" ]; then - if [ "${legacymode}" == "1" ] then + if [ "${legacymode}" == "1" ]; then fn_print_fail_nl "Steam login not set. Update steamuser in ${selfname}" else fn_print_fail_nl "Steam login not set. Update steamuser in ${configdirserver}" fi echo " * Change steamuser=\"username\" to a valid steam login." if [ -d "${lgsmlogdir}" ]; then - if [ "${legacymode}" == "1" ] then + if [ "${legacymode}" == "1" ]; then fn_script_log_fatal "Steam login not set. Update steamuser in ${selfname}" else fn_script_log_fatal "Steam login not set. Update steamuser in ${configdirserver}" @@ -62,4 +62,4 @@ fn_check_steamcmd_sh(){ } fn_check_steamcmd_user -fn_check_steamcmd_sh \ No newline at end of file +fn_check_steamcmd_sh From 612af6390dd791bf51a035ec17c60c4ac5d57302 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 19 Jun 2017 23:36:22 +0200 Subject: [PATCH 2/5] closing fi --- lgsm/functions/check_steamcmd.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/lgsm/functions/check_steamcmd.sh b/lgsm/functions/check_steamcmd.sh index bb205592b..6623a44cd 100644 --- a/lgsm/functions/check_steamcmd.sh +++ b/lgsm/functions/check_steamcmd.sh @@ -29,6 +29,7 @@ fn_check_steamcmd_user(){ fn_script_log_fatal "Steam login not set. Update steamuser in ${selfname}" else fn_script_log_fatal "Steam login not set. Update steamuser in ${configdirserver}" + fi fi core_exit.sh fi From f054c0609e392ad9412da5213468154a60a13751 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 19 Jun 2017 23:53:00 +0200 Subject: [PATCH 3/5] fixing scriptlogdir to lgsmlogdir --- lgsm/config-default/config-lgsm/ts3server/_default.cfg | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lgsm/config-default/config-lgsm/ts3server/_default.cfg b/lgsm/config-default/config-lgsm/ts3server/_default.cfg index 04ec3fdb6..64d0483f4 100644 --- a/lgsm/config-default/config-lgsm/ts3server/_default.cfg +++ b/lgsm/config-default/config-lgsm/ts3server/_default.cfg @@ -59,10 +59,10 @@ backupdir="${rootdir}/backups" ## Logging Directories logdir="${rootdir}/log" -gamelogdir="${serverfiles}/Logs" -scriptlogdir="${logdir}/script" -scriptlog="${scriptlogdir}/${servicename}-script.log" -emaillog="${scriptlogdir}/${servicename}-email.log" +gamelogdir="${serverfiles}/logs" +lgsmlogdir="${logdir}/script" +lgsmlog="${lgsmlogdir}/${servicename}-script.log" +emaillog="${lgsmlogdir}/${servicename}-email.log" ## Logs Naming -lgsmlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" \ No newline at end of file +lgsmlogdate="${lgsmlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" From 8082932a0e2c935c929b4e8d8be409677cb72d60 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Tue, 20 Jun 2017 00:01:04 +0200 Subject: [PATCH 4/5] fixed typo/syntax --- lgsm/functions/check_ip.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/check_ip.sh b/lgsm/functions/check_ip.sh index ed37b6b25..468ac529a 100644 --- a/lgsm/functions/check_ip.sh +++ b/lgsm/functions/check_ip.sh @@ -39,7 +39,7 @@ if [ "${gamename}" != "TeamSpeak 3" ]&&[ "${gamename}" != "Mumble" ]&&[ "${travi echo -en "https://gameservermanagers.com/network-interfaces\n" echo -en "" fn_script_log_fatal "Multiple active network interfaces found." - if [ "${legacymode}" == "1" ] then + if [ "${legacymode}" == "1" ]; then fn_script_log_fatal "Manually specify the IP you want to use within the ${selfname} script." else fn_script_log_fatal "Manually specify the IP you want to use within: ${configdirserver}." From dddbf34c1eb69682edf08d7f526130a930f4ee56 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Tue, 20 Jun 2017 00:11:02 +0200 Subject: [PATCH 5/5] missing factorio branch --- lgsm/config-default/config-lgsm/fctrserver/_default.cfg | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lgsm/config-default/config-lgsm/fctrserver/_default.cfg b/lgsm/config-default/config-lgsm/fctrserver/_default.cfg index ff9d72db1..59664d960 100644 --- a/lgsm/config-default/config-lgsm/fctrserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/fctrserver/_default.cfg @@ -13,6 +13,7 @@ ip="0.0.0.0" port="34197" rconport="34198" rconpassword="CHANGE_ME" +branch="stable" ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters fn_parms(){ @@ -77,4 +78,4 @@ emaillog="${lgsmlogdir}/${servicename}-email.log" ## Logs Naming lgsmlogdate="${lgsmlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" -consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" \ No newline at end of file +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log"