From 9adcd5efb0fe285e343df4303e3a18fda693042c Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Tue, 19 May 2015 21:38:18 +0100 Subject: [PATCH 1/9] Removed ts3 install option getopt --- functions/fn_getopt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/fn_getopt b/functions/fn_getopt index 5c6d0afba..448639e3c 100644 --- a/functions/fn_getopt +++ b/functions/fn_getopt @@ -74,7 +74,7 @@ case "$getopt" in auto-install) fn_autoinstall;; *) - echo "Usage: $0 {start|stop|restart|update|update-funtions|monitor|email-test|details|backup|install|auto-install}" + echo "Usage: $0 {start|stop|restart|update|update-funtions|monitor|email-test|details|backup}" exit 1;; esac exit From d42516b557c5b5d106fc7f3e31c6f9b34e82285a Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Tue, 19 May 2015 21:45:12 +0100 Subject: [PATCH 2/9] Added fn_check_logs --- functions/fn_update_check | 1 + 1 file changed, 1 insertion(+) diff --git a/functions/fn_update_check b/functions/fn_update_check index e3c6842ee..643454a10 100644 --- a/functions/fn_update_check +++ b/functions/fn_update_check @@ -297,6 +297,7 @@ else fi } +fn_check_logs fn_printdots "Checking for update" if [ "${gamename}" == "Teamspeak 3" ]; then fn_teamspeak3_check From 5ce39b813fbd276029ea9a82899b02e93b334431 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Tue, 19 May 2015 21:49:18 +0100 Subject: [PATCH 3/9] syntax error --- functions/fn_check_steamuser | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/functions/fn_check_steamuser b/functions/fn_check_steamuser index d9043db17..1b271fc4f 100644 --- a/functions/fn_check_steamuser +++ b/functions/fn_check_steamuser @@ -4,8 +4,8 @@ # Website: http://gameservermanagers.com # Version: 190515 -if [ -z "${steamuser}" ]||[ "${steamuser}" == "username" ];; then - fn_printwarningnl "Steam Login not set. Using anonymous login." +if [ -z "${steamuser}" ]||[ "${steamuser}" == "username" ]; then + fn_printwarnnl "Steam login not set. Using anonymous login." fn_scriptlog "Steam Login not set. Using anonymous login." if [ "${steamuser}" == "username" ]; then echo " * Change steamuser=\"username\" to a valid steam login." From 65b17aea0308039f2be86b85be135cdf5025adcd Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Tue, 19 May 2015 21:49:26 +0100 Subject: [PATCH 4/9] changed to -d --- functions/fn_check_logs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/fn_check_logs b/functions/fn_check_logs index b029e7592..5b7d33cf6 100644 --- a/functions/fn_check_logs +++ b/functions/fn_check_logs @@ -6,7 +6,7 @@ # Description: Checks that log files exist on server start # Create dir's for the script and console logs -if [ ! -f "${scriptlogdir}" ]; then +if [ ! -d "${scriptlogdir}" ]; then fn_printdots "Checking for log files" sleep 1 fn_printinfo "Checking for log files: Creating log files" From 515ab92cbe19e2a0e7072a89eda9bb28dfc293a3 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Tue, 19 May 2015 21:56:49 +0100 Subject: [PATCH 5/9] Updated messages --- functions/fn_update_check | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/functions/fn_update_check b/functions/fn_update_check index 643454a10..0334c94a8 100644 --- a/functions/fn_update_check +++ b/functions/fn_update_check @@ -74,14 +74,11 @@ fn_logupdaterequest(){ # Checks for server update requests from server logs. echo "" fn_printdots "Checking for update: Server logs" -sleep 1 -fn_printok "Checking for update: Server logs" fn_scriptlog "Checking for update: Server logs" sleep 1 requestrestart=$(grep -Ec "MasterRequestRestart" "${consolelog}") -echo "${requestrestart}" if [ "${requestrestart}" -ge "1" ]; then - fn_printoknl "Server requesting update" + fn_printoknl "Checking for update: Server logs: Update requested" sleep 1 echo "" echo -ne "Applying update.\r" @@ -128,6 +125,7 @@ if [ -z "${availablebuild}" ]; then fn_printfail "Checking for update: SteamCMD: Not returning version info" fn_scriptlog "Failure! Checking for update: SteamCMD: Not returning version info" sleep 2 + exit else fn_printok "Checking for update: SteamCMD" fn_scriptlog "Success! Checking for update: SteamCMD" From 14b004630ba7c6a1d316293fe903c09e77c41ceb Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Tue, 19 May 2015 22:08:52 +0100 Subject: [PATCH 6/9] Added fix to get latest buildid from steamcmd As per comment here https://github.com/dgibbs64/linuxgsm/commit/078a5ccbd8659ddd0506287feac7d0e77aa600a4 --- functions/fn_update_check | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/functions/fn_update_check b/functions/fn_update_check index 0334c94a8..d10d53ec5 100644 --- a/functions/fn_update_check +++ b/functions/fn_update_check @@ -117,6 +117,13 @@ currentbuild=$(grep buildid "${appmanifestfile}" | tr '[:blank:]"' ' ' | tr -s ' # Gets availablebuild info cd "${rootdir}/steamcmd" + +# Removes appinfo.vdf as a fix for not always getting up to date version info from SteamCMD + +if [ -f "${rootdor}/Steam/appcache/appinfo.vdf" ]; then + rm -f "${rootdor}/Steam/appcache/appinfo.vdf" + echo "yup" +fi availablebuild=$(./steamcmd.sh +login "${steamuser}" "${steampass}" +app_info_update 1 +app_info_print "${appid}" +app_info_print "${appid}" +quit | grep -EA 1000 "^\s+\"branches\"$" | grep -EA 5 "^\s+\"public\"$" | grep -m 1 -EB 10 "^\s+}$" | grep -E "^\s+\"buildid\"\s+" | tr '[:blank:]"' ' ' | tr -s ' ' | cut -d\ -f3) if [ -z "${availablebuild}" ]; then fn_printfail "Checking for update: SteamCMD" From bb3efb947ad9ce1f75ebf5fdc01e3ac97d7cd1d6 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Tue, 19 May 2015 22:09:51 +0100 Subject: [PATCH 7/9] Added fix to get latest buildid from steamcmd --- functions/fn_update_check | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/functions/fn_update_check b/functions/fn_update_check index d10d53ec5..0a7c14bb3 100644 --- a/functions/fn_update_check +++ b/functions/fn_update_check @@ -120,9 +120,8 @@ cd "${rootdir}/steamcmd" # Removes appinfo.vdf as a fix for not always getting up to date version info from SteamCMD -if [ -f "${rootdor}/Steam/appcache/appinfo.vdf" ]; then - rm -f "${rootdor}/Steam/appcache/appinfo.vdf" - echo "yup" +if [ -f "${rootdir}/Steam/appcache/appinfo.vdf" ]; then + rm -f "${rootdir}/Steam/appcache/appinfo.vdf" fi availablebuild=$(./steamcmd.sh +login "${steamuser}" "${steampass}" +app_info_update 1 +app_info_print "${appid}" +app_info_print "${appid}" +quit | grep -EA 1000 "^\s+\"branches\"$" | grep -EA 5 "^\s+\"public\"$" | grep -m 1 -EB 10 "^\s+}$" | grep -E "^\s+\"buildid\"\s+" | tr '[:blank:]"' ' ' | tr -s ' ' | cut -d\ -f3) if [ -z "${availablebuild}" ]; then From 6bb595cc33d053e5f25966a91d57c68b10d384fb Mon Sep 17 00:00:00 2001 From: xFaNaTiix Date: Sat, 23 May 2015 17:06:48 +0200 Subject: [PATCH 8/9] Fixed monitoring for cron job --- functions/fn_monitor | 4 ++-- functions/fn_monitor_query | 16 ++++++++-------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/functions/fn_monitor b/functions/fn_monitor index 9798a6225..19c094481 100644 --- a/functions/fn_monitor +++ b/functions/fn_monitor @@ -16,7 +16,7 @@ fn_logs fn_printdots "${servername}" fn_scriptlog "${servername}" sleep 1 -if [ ! -f "${lockselfname}" ]; then +if [ ! -f "${rootdir}/${lockselfname}" ]; then fn_printinfo "Disabled: No lock file found" fn_scriptlog "Disabled: No lock file found" sleep 1 @@ -61,7 +61,7 @@ fn_details_config fn_printdots "${servername}" fn_scriptlog "${servername}" sleep 1 -if [ ! -f "${lockselfname}" ]; then +if [ ! -f "${rootdir}/${lockselfname}" ]; then fn_printinfo "Disabled: No lock file found" fn_scriptlog "Disabled: No lock file found" sleep 1 diff --git a/functions/fn_monitor_query b/functions/fn_monitor_query index f9a888bff..6c03dad44 100644 --- a/functions/fn_monitor_query +++ b/functions/fn_monitor_query @@ -8,7 +8,7 @@ # Detects if the server has frozen. local modulename="Monitor" -if [ -f gsquery.py ]; then +if [ -f "${rootdir}/gsquery.py" ]; then if [ "${engine}" == "unreal" ]||[ "${engine}" == "unreal2" ]; then gameport=$(grep Port= "${servercfgfullpath}"|grep -v Master|grep -v LAN|grep -v Proxy|grep -v Listen|tr -d '\r'|tr -cd [:digit:]) port=$((${gameport} + 1)) @@ -27,7 +27,7 @@ if [ -f gsquery.py ]; then fn_printdots "Querying port: ${ip}:${port} : QUERYING" fn_scriptlog "Querying port: ${ip}:${port} : QUERYING" sleep 1 - serverquery=$(./gsquery.py -a ${ip} -p ${port} -e ${engine} 2>&1) + serverquery=$(${rootdir}/gsquery.py -a ${ip} -p ${port} -e ${engine} 2>&1) exitcode=$? if [ "${exitcode}" == "1" ]||[ "${exitcode}" == "2" ]||[ "${exitcode}" == "3" ]||[ "${exitcode}" == "4" ]; then fn_printfail "Querying port: ${ip}:${port} : ${serverquery}" @@ -64,21 +64,21 @@ if [ -f gsquery.py ]; then echo -en "\n" exit elif [ "${exitcode}" == "126" ]; then - fn_printfail "Querying port: ${ip}:${port} : ERROR: ./gsquery.py: Permission denied" - fn_scriptlog "Querying port: ${ip}:${port} : ERROR: ./gsquery.py: Permission denied" + fn_printfail "Querying port: ${ip}:${port} : ERROR: ${rootdir}/gsquery.py: Permission denied" + fn_scriptlog "Querying port: ${ip}:${port} : ERROR: ${rootdir}/gsquery.py: Permission denied" sleep 1 echo -en "\n" echo "Attempting to resolve automatically" - chmod +x -v gsquery.py + chmod +x -v "${rootdir}/gsquery.py" exitcode=$? if [ "${exitcode}" == "0" ]; then fn_monitor_query else fn_printfailure "Unable to resolve automatically. Please manually fix permissions.\n" - owner=$(ls -al gsquery.py|awk '{ print $3 }') + owner=$(ls -al ${rootdir}/gsquery.py|awk '{ print $3 }') echo "As user ${owner} or root run the following command." whoami=$(whoami) - echo -en "\nchown ${whoami}:${whoami} gsquery.py\n\n" + echo -en "\nchown ${whoami}:${whoami} ${rootdir}/gsquery.py\n\n" exit fi else @@ -86,7 +86,7 @@ if [ -f gsquery.py ]; then fn_scriptlog "Querying port: ${ip}:${port} : UNKNOWN ERROR" sleep 1 echo -en "\n" - ./gsquery.py -a ${ip} -p ${port} -e ${engine} + ${rootdir}/gsquery.py -a ${ip} -p ${port} -e ${engine} exit fi fi \ No newline at end of file From 91aa91bed6040c35de492c42b3eb1c841c37a81f Mon Sep 17 00:00:00 2001 From: Marvin Date: Sat, 23 May 2015 17:36:32 +0200 Subject: [PATCH 9/9] Added error message if gsquery.py doesn't exists --- functions/fn_monitor_query | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/functions/fn_monitor_query b/functions/fn_monitor_query index 6c03dad44..329d49765 100644 --- a/functions/fn_monitor_query +++ b/functions/fn_monitor_query @@ -89,4 +89,7 @@ if [ -f "${rootdir}/gsquery.py" ]; then ${rootdir}/gsquery.py -a ${ip} -p ${port} -e ${engine} exit fi -fi \ No newline at end of file +else + fn_printfail "Could not find ${rootdir}/gsquery.py" + fn_scriptlog "Could not find ${rootdir}/gsquery.py" +fi