From 229fe133f6cb60d49c8a37819c4cb771abd2b03a Mon Sep 17 00:00:00 2001 From: DUDU54 <14166148+DUDU54@users.noreply.github.com> Date: Sun, 12 May 2019 18:21:49 +0900 Subject: [PATCH 01/20] fix(mcserver): correct wrong query port fetched from config (#2355) Co-authored-by: DUDU54 <14166148+DUDU54@users.noreply.github.com> --- lgsm/functions/info_config.sh | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/info_config.sh b/lgsm/functions/info_config.sh index 131113bdf..2af5ab5da 100644 --- a/lgsm/functions/info_config.sh +++ b/lgsm/functions/info_config.sh @@ -338,7 +338,10 @@ fn_info_config_minecraft(){ rconport=$(grep "rcon.port" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]') maxplayers=$(grep "max-players" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]') port=$(grep "server-port" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]') - queryport="${port}" + queryport=$(grep "query.port" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]') + if [ -z "${queryport}" ]; then + queryport=${port} + fi queryenabled=$(grep "enable-query" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/enable-query//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') gamemode=$(grep "gamemode" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]') gameworld=$(grep "level-name" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/level-name//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') @@ -353,7 +356,7 @@ fn_info_config_minecraft(){ rconport=${rconport:-"NOT SET"} maxplayers=${maxplayers:-"NOT SET"} port=${port:-"NOT SET"} - queryport="${queryport:-"NOT SET"}" + queryport=${queryport:-"NOT SET"} queryenabled="${queryenabled:-"NOT SET"}" gamemode=${gamemode:-"NOT SET"} gameworld=${gameworld:-"NOT SET"} From 56a971c2d4c7f3f2b83cf1cb3378b2d281573343 Mon Sep 17 00:00:00 2001 From: DUDU54 <14166148+DUDU54@users.noreply.github.com> Date: Sun, 12 May 2019 18:22:55 +0900 Subject: [PATCH 02/20] fix(mtaserver): correct wrong executable name in update (#2353) --- lgsm/functions/update_mta.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lgsm/functions/update_mta.sh b/lgsm/functions/update_mta.sh index a2536f0b7..90eb424f5 100644 --- a/lgsm/functions/update_mta.sh +++ b/lgsm/functions/update_mta.sh @@ -18,7 +18,7 @@ fn_update_mta_dl(){ if [ "${exitcode}" == "0" ]; then fn_print_ok_eol_nl fn_script_log_pass "Copying to ${serverfiles}" - chmod u+x "${serverfiles}/minecraft_server.jar" + chmod u+x "${serverfiles}/mta-server64" fn_clear_tmp else fn_print_fail_eol_nl @@ -63,7 +63,7 @@ fn_update_mta_localbuild(){ fn_script_log_error "Set localbuild to 0" sleep 0.5 fi - + totalseconds=$((totalseconds + 1)) done fi @@ -81,7 +81,7 @@ fn_update_mta_localbuild(){ if [ -z "${loopignore}" ]; then loopignore=1 fn_script_log_info "Waiting for local build to generate" - fi + fi localbuild=$(grep "= Multi Theft Auto: San Andreas v" "${serverfiles}/mods/deathmatch/logs/server.log" | awk '{ print $7 }' | sed -r 's/^.{1}//' | tail -1) if [ "${localbuild}" ]; then break @@ -90,7 +90,7 @@ fn_update_mta_localbuild(){ totalseconds=$((totalseconds + 1)) done fi - + if [ -z "${localbuild}" ]; then localbuild="0" fn_print_error "Checking for update: ${remotelocation}: waiting for local build: missing local build info" @@ -129,7 +129,7 @@ fn_update_mta_remotebuild(){ fn_script_log_fatal "Unable to get remote build" core_exit.sh fi - fi + fi } fn_update_mta_compare(){ From fa6cfe408613e2fe3dae63eae8e87c4e7efb9aaf Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 12 May 2019 22:28:27 +0100 Subject: [PATCH 03/20] feat(ui): add message display setting (#2357) * setting to change the time in seconds messages are displayed. Default 0.5s * Travis-CI messages have a 0s delay to speed up testing. --- .../config-lgsm/arkserver/_default.cfg | 3 ++ .../config-lgsm/arma3server/_default.cfg | 3 ++ .../config-lgsm/bb2server/_default.cfg | 3 ++ .../config-lgsm/bbserver/_default.cfg | 3 ++ .../config-lgsm/bdserver/_default.cfg | 3 ++ .../config-lgsm/bf1942server/_default.cfg | 3 ++ .../config-lgsm/bmdmserver/_default.cfg | 3 ++ .../config-lgsm/boserver/_default.cfg | 3 ++ .../config-lgsm/bsserver/_default.cfg | 3 ++ .../config-lgsm/bt1944server/_default.cfg | 3 ++ .../config-lgsm/ccserver/_default.cfg | 3 ++ .../config-lgsm/cod2server/_default.cfg | 3 ++ .../config-lgsm/cod4server/_default.cfg | 3 ++ .../config-lgsm/codserver/_default.cfg | 3 ++ .../config-lgsm/coduoserver/_default.cfg | 3 ++ .../config-lgsm/codwawserver/_default.cfg | 3 ++ .../config-lgsm/csczserver/_default.cfg | 3 ++ .../config-lgsm/csgoserver/_default.cfg | 3 ++ .../config-lgsm/csserver/_default.cfg | 3 ++ .../config-lgsm/cssserver/_default.cfg | 3 ++ .../config-lgsm/dabserver/_default.cfg | 3 ++ .../config-lgsm/dmcserver/_default.cfg | 3 ++ .../config-lgsm/dodserver/_default.cfg | 3 ++ .../config-lgsm/dodsserver/_default.cfg | 3 ++ .../config-lgsm/doiserver/_default.cfg | 3 ++ .../config-lgsm/dstserver/_default.cfg | 3 ++ .../config-lgsm/dysserver/_default.cfg | 3 ++ .../config-lgsm/ecoserver/_default.cfg | 3 ++ .../config-lgsm/emserver/_default.cfg | 3 ++ .../config-lgsm/etlserver/_default.cfg | 3 ++ .../config-lgsm/fctrserver/_default.cfg | 3 ++ .../config-lgsm/fofserver/_default.cfg | 3 ++ .../config-lgsm/gesserver/_default.cfg | 3 ++ .../config-lgsm/gmodserver/_default.cfg | 3 ++ .../config-lgsm/hl2dmserver/_default.cfg | 3 ++ .../config-lgsm/hldmserver/_default.cfg | 3 ++ .../config-lgsm/hldmsserver/_default.cfg | 3 ++ .../config-lgsm/hwserver/_default.cfg | 3 ++ .../config-lgsm/insserver/_default.cfg | 3 ++ .../config-lgsm/inssserver/_default.cfg | 3 ++ .../config-lgsm/iosserver/_default.cfg | 3 ++ .../config-lgsm/jc2server/_default.cfg | 3 ++ .../config-lgsm/jc3server/_default.cfg | 3 ++ .../config-lgsm/kf2server/_default.cfg | 3 ++ .../config-lgsm/kfserver/_default.cfg | 3 ++ .../config-lgsm/l4d2server/_default.cfg | 3 ++ .../config-lgsm/l4dserver/_default.cfg | 3 ++ .../config-lgsm/mcserver/_default.cfg | 3 ++ .../config-lgsm/mhserver/_default.cfg | 3 ++ .../config-lgsm/mtaserver/_default.cfg | 3 ++ .../config-lgsm/mumbleserver/_default.cfg | 3 ++ .../config-lgsm/ndserver/_default.cfg | 3 ++ .../config-lgsm/nmrihserver/_default.cfg | 3 ++ .../config-lgsm/ns2cserver/_default.cfg | 3 ++ .../config-lgsm/ns2server/_default.cfg | 3 ++ .../config-lgsm/nsserver/_default.cfg | 3 ++ .../config-lgsm/opforserver/_default.cfg | 3 ++ .../config-lgsm/pcserver/_default.cfg | 3 ++ .../config-lgsm/pstbsserver/_default.cfg | 3 ++ .../config-lgsm/pvkiiserver/_default.cfg | 3 ++ .../config-lgsm/pzserver/_default.cfg | 3 ++ .../config-lgsm/q2server/_default.cfg | 3 ++ .../config-lgsm/q3server/_default.cfg | 3 ++ .../config-lgsm/qlserver/_default.cfg | 3 ++ .../config-lgsm/qwserver/_default.cfg | 3 ++ .../config-lgsm/ricochetserver/_default.cfg | 3 ++ .../config-lgsm/roserver/_default.cfg | 3 ++ .../config-lgsm/rtcwserver/_default.cfg | 3 ++ .../config-lgsm/rustserver/_default.cfg | 3 ++ .../config-lgsm/rwserver/_default.cfg | 3 ++ .../config-lgsm/sampserver/_default.cfg | 3 ++ .../config-lgsm/sbotsserver/_default.cfg | 3 ++ .../config-lgsm/sbserver/_default.cfg | 3 ++ .../config-lgsm/sdtdserver/_default.cfg | 3 ++ .../config-lgsm/squadserver/_default.cfg | 3 ++ .../config-lgsm/ss3server/_default.cfg | 3 ++ .../config-lgsm/stserver/_default.cfg | 3 ++ .../config-lgsm/svenserver/_default.cfg | 3 ++ .../config-lgsm/terrariaserver/_default.cfg | 3 ++ .../config-lgsm/tf2server/_default.cfg | 3 ++ .../config-lgsm/tfcserver/_default.cfg | 3 ++ .../config-lgsm/ts3server/_default.cfg | 3 ++ .../config-lgsm/tuserver/_default.cfg | 3 ++ .../config-lgsm/twserver/_default.cfg | 3 ++ .../config-lgsm/untserver/_default.cfg | 3 ++ .../config-lgsm/ut2k4server/_default.cfg | 3 ++ .../config-lgsm/ut3server/_default.cfg | 3 ++ .../config-lgsm/ut99server/_default.cfg | 3 ++ .../config-lgsm/utserver/_default.cfg | 3 ++ .../config-lgsm/vsserver/_default.cfg | 3 ++ .../config-lgsm/wetserver/_default.cfg | 3 ++ .../config-lgsm/wurmserver/_default.cfg | 3 ++ .../config-lgsm/zpsserver/_default.cfg | 3 ++ lgsm/functions/alert_email.sh | 2 +- lgsm/functions/alert_ifttt.sh | 3 +- lgsm/functions/alert_mailgun.sh | 3 +- lgsm/functions/alert_pushbullet.sh | 1 - lgsm/functions/alert_pushover.sh | 3 +- lgsm/functions/alert_telegram.sh | 1 - lgsm/functions/check_config.sh | 5 -- lgsm/functions/check_deps.sh | 10 ++-- lgsm/functions/check_glibc.sh | 4 +- lgsm/functions/check_ip.sh | 4 -- lgsm/functions/check_logs.sh | 1 - lgsm/functions/check_permissions.sh | 7 +-- lgsm/functions/check_steamcmd.sh | 1 - lgsm/functions/check_system_requirements.sh | 4 +- lgsm/functions/command_backup.sh | 19 ++----- lgsm/functions/command_console.sh | 3 -- lgsm/functions/command_debug.sh | 3 -- lgsm/functions/command_fastdl.sh | 14 ++--- lgsm/functions/command_mods_install.sh | 1 - lgsm/functions/command_mods_remove.sh | 8 +-- lgsm/functions/command_mods_update.sh | 4 +- lgsm/functions/command_monitor.sh | 10 ---- lgsm/functions/command_postdetails.sh | 4 +- lgsm/functions/command_start.sh | 12 ++--- lgsm/functions/command_stop.sh | 20 +++---- lgsm/functions/command_test_alert.sh | 1 - lgsm/functions/command_ts3_server_pass.sh | 2 - lgsm/functions/command_update.sh | 1 - lgsm/functions/command_update_linuxgsm.sh | 1 - lgsm/functions/command_validate.sh | 13 ++--- lgsm/functions/command_wipe.sh | 53 ++++++++----------- lgsm/functions/core_dl.sh | 6 +-- lgsm/functions/core_messages.sh | 34 +++++++++--- lgsm/functions/fix.sh | 6 +-- lgsm/functions/fix_kf.sh | 8 +-- lgsm/functions/fix_kf2.sh | 4 +- lgsm/functions/fix_mta.sh | 2 +- lgsm/functions/fix_ro.sh | 10 ++-- lgsm/functions/fix_ut.sh | 2 +- lgsm/functions/fix_ut2k4.sh | 8 +-- lgsm/functions/fix_ut3.sh | 4 +- lgsm/functions/install_config.sh | 24 ++++----- lgsm/functions/install_dst_token.sh | 2 +- lgsm/functions/install_eula.sh | 2 +- lgsm/functions/install_factorio_save.sh | 2 +- lgsm/functions/install_gslt.sh | 4 +- lgsm/functions/install_logs.sh | 4 +- lgsm/functions/install_server_dir.sh | 2 +- lgsm/functions/install_server_files.sh | 2 +- lgsm/functions/install_squad_license.sh | 4 +- lgsm/functions/install_steamcmd.sh | 2 +- lgsm/functions/install_ts3db.sh | 9 ++-- lgsm/functions/install_ut2k4_key.sh | 2 +- lgsm/functions/logs.sh | 4 +- lgsm/functions/mods_core.sh | 16 +++--- lgsm/functions/update_factorio.sh | 12 +---- lgsm/functions/update_minecraft.sh | 14 +---- lgsm/functions/update_mta.sh | 14 +---- lgsm/functions/update_mumble.sh | 12 +---- lgsm/functions/update_steamcmd.sh | 20 ++----- lgsm/functions/update_ts3.sh | 23 +++----- tests/tests_fctrserver.sh | 1 - tests/tests_jc2server.sh | 1 - tests/tests_mcserver.sh | 3 +- tests/tests_ts3server.sh | 1 - 158 files changed, 450 insertions(+), 311 deletions(-) diff --git a/lgsm/config-default/config-lgsm/arkserver/_default.cfg b/lgsm/config-default/config-lgsm/arkserver/_default.cfg index 47189ae12..9306d3b4e 100644 --- a/lgsm/config-default/config-lgsm/arkserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/arkserver/_default.cfg @@ -88,6 +88,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## SteamCMD Settings # Server appid appid="376030" diff --git a/lgsm/config-default/config-lgsm/arma3server/_default.cfg b/lgsm/config-default/config-lgsm/arma3server/_default.cfg index c7f9f1187..07fff7375 100644 --- a/lgsm/config-default/config-lgsm/arma3server/_default.cfg +++ b/lgsm/config-default/config-lgsm/arma3server/_default.cfg @@ -102,6 +102,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## SteamCMD Settings # Server appid appid="233780" diff --git a/lgsm/config-default/config-lgsm/bb2server/_default.cfg b/lgsm/config-default/config-lgsm/bb2server/_default.cfg index 17014193d..e04d61e72 100644 --- a/lgsm/config-default/config-lgsm/bb2server/_default.cfg +++ b/lgsm/config-default/config-lgsm/bb2server/_default.cfg @@ -92,6 +92,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## SteamCMD Settings # Server appid appid="475370" diff --git a/lgsm/config-default/config-lgsm/bbserver/_default.cfg b/lgsm/config-default/config-lgsm/bbserver/_default.cfg index 0002910f9..2b891d4ed 100644 --- a/lgsm/config-default/config-lgsm/bbserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/bbserver/_default.cfg @@ -86,6 +86,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## SteamCMD Settings # Server appid appid="90" diff --git a/lgsm/config-default/config-lgsm/bdserver/_default.cfg b/lgsm/config-default/config-lgsm/bdserver/_default.cfg index ad5bc4a7b..602936e6d 100644 --- a/lgsm/config-default/config-lgsm/bdserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/bdserver/_default.cfg @@ -86,6 +86,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## SteamCMD Settings # Server appid appid="817300" diff --git a/lgsm/config-default/config-lgsm/bf1942server/_default.cfg b/lgsm/config-default/config-lgsm/bf1942server/_default.cfg index 0323fa414..c0f799198 100644 --- a/lgsm/config-default/config-lgsm/bf1942server/_default.cfg +++ b/lgsm/config-default/config-lgsm/bf1942server/_default.cfg @@ -79,6 +79,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## LinuxGSM Server Details # Do not edit gamename="Battlefield: 1942" diff --git a/lgsm/config-default/config-lgsm/bmdmserver/_default.cfg b/lgsm/config-default/config-lgsm/bmdmserver/_default.cfg index d3036144e..4eb1ceec3 100644 --- a/lgsm/config-default/config-lgsm/bmdmserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/bmdmserver/_default.cfg @@ -92,6 +92,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## SteamCMD Settings # Server appid appid="346680" diff --git a/lgsm/config-default/config-lgsm/boserver/_default.cfg b/lgsm/config-default/config-lgsm/boserver/_default.cfg index c9fc1c954..77a5b0b4b 100644 --- a/lgsm/config-default/config-lgsm/boserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/boserver/_default.cfg @@ -85,6 +85,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## SteamCMD Settings # Server appid appid="416880" diff --git a/lgsm/config-default/config-lgsm/bsserver/_default.cfg b/lgsm/config-default/config-lgsm/bsserver/_default.cfg index 3792882b1..e9294e0a4 100644 --- a/lgsm/config-default/config-lgsm/bsserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/bsserver/_default.cfg @@ -96,6 +96,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## SteamCMD Settings # Server appid appid="228780" diff --git a/lgsm/config-default/config-lgsm/bt1944server/_default.cfg b/lgsm/config-default/config-lgsm/bt1944server/_default.cfg index 22b3f4e4d..dcb01817b 100644 --- a/lgsm/config-default/config-lgsm/bt1944server/_default.cfg +++ b/lgsm/config-default/config-lgsm/bt1944server/_default.cfg @@ -84,6 +84,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## SteamCMD Settings # Server appid appid="805140" diff --git a/lgsm/config-default/config-lgsm/ccserver/_default.cfg b/lgsm/config-default/config-lgsm/ccserver/_default.cfg index c85af6137..f07e8bf87 100644 --- a/lgsm/config-default/config-lgsm/ccserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/ccserver/_default.cfg @@ -87,6 +87,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## SteamCMD Settings # Server appid appid="383410" diff --git a/lgsm/config-default/config-lgsm/cod2server/_default.cfg b/lgsm/config-default/config-lgsm/cod2server/_default.cfg index 61b0a56e8..1bbc6abb2 100644 --- a/lgsm/config-default/config-lgsm/cod2server/_default.cfg +++ b/lgsm/config-default/config-lgsm/cod2server/_default.cfg @@ -82,6 +82,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## LinuxGSM Server Details # Do not edit gamename="Call of Duty 2" diff --git a/lgsm/config-default/config-lgsm/cod4server/_default.cfg b/lgsm/config-default/config-lgsm/cod4server/_default.cfg index a46248950..d2da96d90 100644 --- a/lgsm/config-default/config-lgsm/cod4server/_default.cfg +++ b/lgsm/config-default/config-lgsm/cod4server/_default.cfg @@ -82,6 +82,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## LinuxGSM Server Details # Do not edit gamename="Call of Duty 4" diff --git a/lgsm/config-default/config-lgsm/codserver/_default.cfg b/lgsm/config-default/config-lgsm/codserver/_default.cfg index 67c6dc918..6797cf433 100644 --- a/lgsm/config-default/config-lgsm/codserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/codserver/_default.cfg @@ -82,6 +82,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## LinuxGSM Server Details # Do not edit gamename="Call of Duty" diff --git a/lgsm/config-default/config-lgsm/coduoserver/_default.cfg b/lgsm/config-default/config-lgsm/coduoserver/_default.cfg index c61d3f96b..ea142dee9 100644 --- a/lgsm/config-default/config-lgsm/coduoserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/coduoserver/_default.cfg @@ -82,6 +82,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## LinuxGSM Server Details # Do not edit gamename="Call of Duty: United Offensive" diff --git a/lgsm/config-default/config-lgsm/codwawserver/_default.cfg b/lgsm/config-default/config-lgsm/codwawserver/_default.cfg index 4296b4b7c..87ddb9468 100644 --- a/lgsm/config-default/config-lgsm/codwawserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/codwawserver/_default.cfg @@ -82,6 +82,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## LinuxGSM Server Details # Do not edit gamename="Call of Duty: World at War" diff --git a/lgsm/config-default/config-lgsm/csczserver/_default.cfg b/lgsm/config-default/config-lgsm/csczserver/_default.cfg index 363d82e6b..f8b17a3ac 100644 --- a/lgsm/config-default/config-lgsm/csczserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/csczserver/_default.cfg @@ -86,6 +86,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## SteamCMD Settings # Server appid appid="90" diff --git a/lgsm/config-default/config-lgsm/csgoserver/_default.cfg b/lgsm/config-default/config-lgsm/csgoserver/_default.cfg index 8fb88de8b..3bd16b090 100644 --- a/lgsm/config-default/config-lgsm/csgoserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/csgoserver/_default.cfg @@ -112,6 +112,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## SteamCMD Settings # Server appid appid="740" diff --git a/lgsm/config-default/config-lgsm/csserver/_default.cfg b/lgsm/config-default/config-lgsm/csserver/_default.cfg index c3f087a0f..c465ad5c0 100644 --- a/lgsm/config-default/config-lgsm/csserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/csserver/_default.cfg @@ -86,6 +86,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## SteamCMD Settings # Server appid appid="90" diff --git a/lgsm/config-default/config-lgsm/cssserver/_default.cfg b/lgsm/config-default/config-lgsm/cssserver/_default.cfg index 47ba05037..945327cf8 100644 --- a/lgsm/config-default/config-lgsm/cssserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/cssserver/_default.cfg @@ -92,6 +92,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## SteamCMD Settings # Server appid appid="232330" diff --git a/lgsm/config-default/config-lgsm/dabserver/_default.cfg b/lgsm/config-default/config-lgsm/dabserver/_default.cfg index efa06c0a0..b3c062c33 100644 --- a/lgsm/config-default/config-lgsm/dabserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/dabserver/_default.cfg @@ -87,6 +87,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## SteamCMD Settings # Server appid appid="317800" diff --git a/lgsm/config-default/config-lgsm/dmcserver/_default.cfg b/lgsm/config-default/config-lgsm/dmcserver/_default.cfg index 008ebfe60..be42fe649 100644 --- a/lgsm/config-default/config-lgsm/dmcserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/dmcserver/_default.cfg @@ -86,6 +86,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## SteamCMD Settings # Server appid appid="90" diff --git a/lgsm/config-default/config-lgsm/dodserver/_default.cfg b/lgsm/config-default/config-lgsm/dodserver/_default.cfg index 09eb2eb1d..586d825bd 100644 --- a/lgsm/config-default/config-lgsm/dodserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/dodserver/_default.cfg @@ -86,6 +86,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## SteamCMD Settings # Server appid appid="90" diff --git a/lgsm/config-default/config-lgsm/dodsserver/_default.cfg b/lgsm/config-default/config-lgsm/dodsserver/_default.cfg index 5e9438356..6c747e26a 100644 --- a/lgsm/config-default/config-lgsm/dodsserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/dodsserver/_default.cfg @@ -87,6 +87,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## SteamCMD Settings # Server appid appid="232290" diff --git a/lgsm/config-default/config-lgsm/doiserver/_default.cfg b/lgsm/config-default/config-lgsm/doiserver/_default.cfg index cb507f756..8f8ffad37 100644 --- a/lgsm/config-default/config-lgsm/doiserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/doiserver/_default.cfg @@ -89,6 +89,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## SteamCMD Settings # Server appid appid="462310" diff --git a/lgsm/config-default/config-lgsm/dstserver/_default.cfg b/lgsm/config-default/config-lgsm/dstserver/_default.cfg index 645826951..2674c33f4 100644 --- a/lgsm/config-default/config-lgsm/dstserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/dstserver/_default.cfg @@ -90,6 +90,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## SteamCMD Settings # Server appid appid="343050" diff --git a/lgsm/config-default/config-lgsm/dysserver/_default.cfg b/lgsm/config-default/config-lgsm/dysserver/_default.cfg index 84342b6fa..822389fd3 100644 --- a/lgsm/config-default/config-lgsm/dysserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/dysserver/_default.cfg @@ -92,6 +92,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## SteamCMD Settings # Server appid appid="17585" diff --git a/lgsm/config-default/config-lgsm/ecoserver/_default.cfg b/lgsm/config-default/config-lgsm/ecoserver/_default.cfg index 10908f448..c1936a028 100644 --- a/lgsm/config-default/config-lgsm/ecoserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/ecoserver/_default.cfg @@ -75,6 +75,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## SteamCMD Settings # Server appid appid="739590" diff --git a/lgsm/config-default/config-lgsm/emserver/_default.cfg b/lgsm/config-default/config-lgsm/emserver/_default.cfg index 3188dcf47..b2cd2b08a 100644 --- a/lgsm/config-default/config-lgsm/emserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/emserver/_default.cfg @@ -92,6 +92,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## SteamCMD Settings # Server appid appid="460040" diff --git a/lgsm/config-default/config-lgsm/etlserver/_default.cfg b/lgsm/config-default/config-lgsm/etlserver/_default.cfg index 86e71c8bb..b2762dc16 100644 --- a/lgsm/config-default/config-lgsm/etlserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/etlserver/_default.cfg @@ -76,6 +76,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## LinuxGSM Server Details # Do not edit gamename="ET: Legacy" diff --git a/lgsm/config-default/config-lgsm/fctrserver/_default.cfg b/lgsm/config-default/config-lgsm/fctrserver/_default.cfg index 4117dfbe5..bb6036d91 100644 --- a/lgsm/config-default/config-lgsm/fctrserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/fctrserver/_default.cfg @@ -87,6 +87,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## LinuxGSM Server Details # Do not edit gamename="Factorio" diff --git a/lgsm/config-default/config-lgsm/fofserver/_default.cfg b/lgsm/config-default/config-lgsm/fofserver/_default.cfg index 18d0081f0..45c9526ce 100644 --- a/lgsm/config-default/config-lgsm/fofserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/fofserver/_default.cfg @@ -87,6 +87,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## SteamCMD Settings # Server appid appid="295230" diff --git a/lgsm/config-default/config-lgsm/gesserver/_default.cfg b/lgsm/config-default/config-lgsm/gesserver/_default.cfg index 6f810f409..7f1fc8fcb 100644 --- a/lgsm/config-default/config-lgsm/gesserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/gesserver/_default.cfg @@ -87,6 +87,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## SteamCMD Settings # Server appid appid="310" # Source 2007 SDK diff --git a/lgsm/config-default/config-lgsm/gmodserver/_default.cfg b/lgsm/config-default/config-lgsm/gmodserver/_default.cfg index 00732dd30..03990a8a2 100644 --- a/lgsm/config-default/config-lgsm/gmodserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/gmodserver/_default.cfg @@ -103,6 +103,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## SteamCMD Settings # Server appid appid="4020" diff --git a/lgsm/config-default/config-lgsm/hl2dmserver/_default.cfg b/lgsm/config-default/config-lgsm/hl2dmserver/_default.cfg index c5796eab5..974fb0478 100644 --- a/lgsm/config-default/config-lgsm/hl2dmserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/hl2dmserver/_default.cfg @@ -87,6 +87,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## SteamCMD Settings # Server appid appid="232370" diff --git a/lgsm/config-default/config-lgsm/hldmserver/_default.cfg b/lgsm/config-default/config-lgsm/hldmserver/_default.cfg index 41308db1f..6a8dcc880 100644 --- a/lgsm/config-default/config-lgsm/hldmserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/hldmserver/_default.cfg @@ -86,6 +86,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## SteamCMD Settings # Server appid appid="90" diff --git a/lgsm/config-default/config-lgsm/hldmsserver/_default.cfg b/lgsm/config-default/config-lgsm/hldmsserver/_default.cfg index 91ae5546b..e31fee26d 100644 --- a/lgsm/config-default/config-lgsm/hldmsserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/hldmsserver/_default.cfg @@ -87,6 +87,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## SteamCMD Settings # Server appid appid="255470" diff --git a/lgsm/config-default/config-lgsm/hwserver/_default.cfg b/lgsm/config-default/config-lgsm/hwserver/_default.cfg index 0be9eba7c..8272cca0b 100644 --- a/lgsm/config-default/config-lgsm/hwserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/hwserver/_default.cfg @@ -98,6 +98,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## SteamCMD Settings # Server appid appid="405100" diff --git a/lgsm/config-default/config-lgsm/insserver/_default.cfg b/lgsm/config-default/config-lgsm/insserver/_default.cfg index 7adb4b718..f7f047a10 100644 --- a/lgsm/config-default/config-lgsm/insserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/insserver/_default.cfg @@ -94,6 +94,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## SteamCMD Settings # Server appid appid="237410" diff --git a/lgsm/config-default/config-lgsm/inssserver/_default.cfg b/lgsm/config-default/config-lgsm/inssserver/_default.cfg index 1ba1df679..1714219ec 100644 --- a/lgsm/config-default/config-lgsm/inssserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/inssserver/_default.cfg @@ -95,6 +95,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## SteamCMD Settings # Server appid appid="581330" diff --git a/lgsm/config-default/config-lgsm/iosserver/_default.cfg b/lgsm/config-default/config-lgsm/iosserver/_default.cfg index f42987541..9d9d61c99 100644 --- a/lgsm/config-default/config-lgsm/iosserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/iosserver/_default.cfg @@ -87,6 +87,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## SteamCMD Settings # Server appid appid="673990" diff --git a/lgsm/config-default/config-lgsm/jc2server/_default.cfg b/lgsm/config-default/config-lgsm/jc2server/_default.cfg index cb67c18d3..d539ee38c 100644 --- a/lgsm/config-default/config-lgsm/jc2server/_default.cfg +++ b/lgsm/config-default/config-lgsm/jc2server/_default.cfg @@ -79,6 +79,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## SteamCMD Settings # Server appid appid="261140" diff --git a/lgsm/config-default/config-lgsm/jc3server/_default.cfg b/lgsm/config-default/config-lgsm/jc3server/_default.cfg index ced884359..995fd4714 100644 --- a/lgsm/config-default/config-lgsm/jc3server/_default.cfg +++ b/lgsm/config-default/config-lgsm/jc3server/_default.cfg @@ -79,6 +79,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## SteamCMD Settings # Server appid appid="619960" diff --git a/lgsm/config-default/config-lgsm/kf2server/_default.cfg b/lgsm/config-default/config-lgsm/kf2server/_default.cfg index c6db77168..72c06d1b0 100644 --- a/lgsm/config-default/config-lgsm/kf2server/_default.cfg +++ b/lgsm/config-default/config-lgsm/kf2server/_default.cfg @@ -85,6 +85,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## SteamCMD Settings # Server appid appid="232130" diff --git a/lgsm/config-default/config-lgsm/kfserver/_default.cfg b/lgsm/config-default/config-lgsm/kfserver/_default.cfg index 25b828a1b..1644f73cc 100644 --- a/lgsm/config-default/config-lgsm/kfserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/kfserver/_default.cfg @@ -91,6 +91,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## SteamCMD Settings # Server appid appid="215360" diff --git a/lgsm/config-default/config-lgsm/l4d2server/_default.cfg b/lgsm/config-default/config-lgsm/l4d2server/_default.cfg index 9bd1b8bac..c7205100c 100644 --- a/lgsm/config-default/config-lgsm/l4d2server/_default.cfg +++ b/lgsm/config-default/config-lgsm/l4d2server/_default.cfg @@ -86,6 +86,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## SteamCMD Settings # Server appid appid="222860" diff --git a/lgsm/config-default/config-lgsm/l4dserver/_default.cfg b/lgsm/config-default/config-lgsm/l4dserver/_default.cfg index d4003b91e..33e562310 100644 --- a/lgsm/config-default/config-lgsm/l4dserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/l4dserver/_default.cfg @@ -86,6 +86,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## SteamCMD Settings # Server appid appid="222840" diff --git a/lgsm/config-default/config-lgsm/mcserver/_default.cfg b/lgsm/config-default/config-lgsm/mcserver/_default.cfg index 5d904a61b..4bfa870df 100644 --- a/lgsm/config-default/config-lgsm/mcserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/mcserver/_default.cfg @@ -81,6 +81,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## LinuxGSM Server Details # Do not edit gamename="Minecraft" diff --git a/lgsm/config-default/config-lgsm/mhserver/_default.cfg b/lgsm/config-default/config-lgsm/mhserver/_default.cfg index 4ae249588..2ad316151 100644 --- a/lgsm/config-default/config-lgsm/mhserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/mhserver/_default.cfg @@ -87,6 +87,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## SteamCMD Settings # Server appid appid="629800" diff --git a/lgsm/config-default/config-lgsm/mtaserver/_default.cfg b/lgsm/config-default/config-lgsm/mtaserver/_default.cfg index 459c2a45e..bc03ccf15 100644 --- a/lgsm/config-default/config-lgsm/mtaserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/mtaserver/_default.cfg @@ -77,6 +77,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## LinuxGSM Server Details # Do not edit gamename="Multi Theft Auto" diff --git a/lgsm/config-default/config-lgsm/mumbleserver/_default.cfg b/lgsm/config-default/config-lgsm/mumbleserver/_default.cfg index c151ff914..d848af88f 100644 --- a/lgsm/config-default/config-lgsm/mumbleserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/mumbleserver/_default.cfg @@ -80,6 +80,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## LinuxGSM Server Details # Do not edit gamename="Mumble" diff --git a/lgsm/config-default/config-lgsm/ndserver/_default.cfg b/lgsm/config-default/config-lgsm/ndserver/_default.cfg index 192bac7e8..cf7712e3e 100644 --- a/lgsm/config-default/config-lgsm/ndserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/ndserver/_default.cfg @@ -87,6 +87,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## SteamCMD Settings # Server appid appid="111710" diff --git a/lgsm/config-default/config-lgsm/nmrihserver/_default.cfg b/lgsm/config-default/config-lgsm/nmrihserver/_default.cfg index 9de8fd81e..10d7696a6 100644 --- a/lgsm/config-default/config-lgsm/nmrihserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/nmrihserver/_default.cfg @@ -92,6 +92,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## SteamCMD Settings # Server appid appid="317670" diff --git a/lgsm/config-default/config-lgsm/ns2cserver/_default.cfg b/lgsm/config-default/config-lgsm/ns2cserver/_default.cfg index 7398c3cb9..f8de5a44c 100644 --- a/lgsm/config-default/config-lgsm/ns2cserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/ns2cserver/_default.cfg @@ -94,6 +94,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## SteamCMD Settings # Server appid appid="313900" diff --git a/lgsm/config-default/config-lgsm/ns2server/_default.cfg b/lgsm/config-default/config-lgsm/ns2server/_default.cfg index 3786e558c..2f7e602ca 100644 --- a/lgsm/config-default/config-lgsm/ns2server/_default.cfg +++ b/lgsm/config-default/config-lgsm/ns2server/_default.cfg @@ -98,6 +98,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## SteamCMD Settings # Server appid appid="4940" diff --git a/lgsm/config-default/config-lgsm/nsserver/_default.cfg b/lgsm/config-default/config-lgsm/nsserver/_default.cfg index 25c22e9dd..1a5f8db9c 100644 --- a/lgsm/config-default/config-lgsm/nsserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/nsserver/_default.cfg @@ -86,6 +86,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## SteamCMD Settings # Server appid appid="90" diff --git a/lgsm/config-default/config-lgsm/opforserver/_default.cfg b/lgsm/config-default/config-lgsm/opforserver/_default.cfg index b7f449e28..3618a40c1 100644 --- a/lgsm/config-default/config-lgsm/opforserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/opforserver/_default.cfg @@ -86,6 +86,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## SteamCMD Settings # Server appid appid="90" diff --git a/lgsm/config-default/config-lgsm/pcserver/_default.cfg b/lgsm/config-default/config-lgsm/pcserver/_default.cfg index 2dd4f0514..8b0f7ce78 100644 --- a/lgsm/config-default/config-lgsm/pcserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/pcserver/_default.cfg @@ -79,6 +79,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## SteamCMD Settings # Server appid appid="332670" diff --git a/lgsm/config-default/config-lgsm/pstbsserver/_default.cfg b/lgsm/config-default/config-lgsm/pstbsserver/_default.cfg index b331cc134..3bb8dd0e4 100644 --- a/lgsm/config-default/config-lgsm/pstbsserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/pstbsserver/_default.cfg @@ -90,6 +90,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## SteamCMD Settings # Server appid appid="746200" diff --git a/lgsm/config-default/config-lgsm/pvkiiserver/_default.cfg b/lgsm/config-default/config-lgsm/pvkiiserver/_default.cfg index b75b07348..1a197d8f1 100644 --- a/lgsm/config-default/config-lgsm/pvkiiserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/pvkiiserver/_default.cfg @@ -87,6 +87,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## SteamCMD Settings # Server appid appid="17575" diff --git a/lgsm/config-default/config-lgsm/pzserver/_default.cfg b/lgsm/config-default/config-lgsm/pzserver/_default.cfg index 179c7dd34..5aadad897 100644 --- a/lgsm/config-default/config-lgsm/pzserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/pzserver/_default.cfg @@ -82,6 +82,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## SteamCMD Settings # Server appid appid="380870" diff --git a/lgsm/config-default/config-lgsm/q2server/_default.cfg b/lgsm/config-default/config-lgsm/q2server/_default.cfg index 6eac2ebd8..c109e7bcf 100644 --- a/lgsm/config-default/config-lgsm/q2server/_default.cfg +++ b/lgsm/config-default/config-lgsm/q2server/_default.cfg @@ -81,6 +81,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## LinuxGSM Server Details # Do not edit gamename="Quake 2" diff --git a/lgsm/config-default/config-lgsm/q3server/_default.cfg b/lgsm/config-default/config-lgsm/q3server/_default.cfg index fdbd4acec..89491a537 100644 --- a/lgsm/config-default/config-lgsm/q3server/_default.cfg +++ b/lgsm/config-default/config-lgsm/q3server/_default.cfg @@ -81,6 +81,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## LinuxGSM Server Details # Do not edit gamename="Quake 3: Arena" diff --git a/lgsm/config-default/config-lgsm/qlserver/_default.cfg b/lgsm/config-default/config-lgsm/qlserver/_default.cfg index d77f20c5a..b4ac70336 100644 --- a/lgsm/config-default/config-lgsm/qlserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/qlserver/_default.cfg @@ -81,6 +81,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## SteamCMD Settings # Server appid appid="349090" diff --git a/lgsm/config-default/config-lgsm/qwserver/_default.cfg b/lgsm/config-default/config-lgsm/qwserver/_default.cfg index 07ed79cf6..dad680aa8 100644 --- a/lgsm/config-default/config-lgsm/qwserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/qwserver/_default.cfg @@ -80,6 +80,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## LinuxGSM Server Details # Do not edit gamename="QuakeWorld" diff --git a/lgsm/config-default/config-lgsm/ricochetserver/_default.cfg b/lgsm/config-default/config-lgsm/ricochetserver/_default.cfg index 51c34163b..1e4848403 100644 --- a/lgsm/config-default/config-lgsm/ricochetserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/ricochetserver/_default.cfg @@ -86,6 +86,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## SteamCMD Settings # Server appid appid="90" diff --git a/lgsm/config-default/config-lgsm/roserver/_default.cfg b/lgsm/config-default/config-lgsm/roserver/_default.cfg index 8ac336381..6402a7c51 100644 --- a/lgsm/config-default/config-lgsm/roserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/roserver/_default.cfg @@ -87,6 +87,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## SteamCMD Settings # Server appid appid="223250" diff --git a/lgsm/config-default/config-lgsm/rtcwserver/_default.cfg b/lgsm/config-default/config-lgsm/rtcwserver/_default.cfg index a863c5425..2c753f26d 100644 --- a/lgsm/config-default/config-lgsm/rtcwserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/rtcwserver/_default.cfg @@ -81,6 +81,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## LinuxGSM Server Details # Do not edit gamename="Return to Castle Wolfenstein" diff --git a/lgsm/config-default/config-lgsm/rustserver/_default.cfg b/lgsm/config-default/config-lgsm/rustserver/_default.cfg index df590c2f3..b5e56db5b 100644 --- a/lgsm/config-default/config-lgsm/rustserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/rustserver/_default.cfg @@ -111,6 +111,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## SteamCMD Settings # Server appid appid="258550" diff --git a/lgsm/config-default/config-lgsm/rwserver/_default.cfg b/lgsm/config-default/config-lgsm/rwserver/_default.cfg index ace8d23ae..56d6d4526 100644 --- a/lgsm/config-default/config-lgsm/rwserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/rwserver/_default.cfg @@ -82,6 +82,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## SteamCMD Settings # Server appid appid="339010" diff --git a/lgsm/config-default/config-lgsm/sampserver/_default.cfg b/lgsm/config-default/config-lgsm/sampserver/_default.cfg index 5302a842b..40a49ae93 100644 --- a/lgsm/config-default/config-lgsm/sampserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/sampserver/_default.cfg @@ -80,6 +80,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## LinuxGSM Server Details # Do not edit gamename="San Andreas Multiplayer" diff --git a/lgsm/config-default/config-lgsm/sbotsserver/_default.cfg b/lgsm/config-default/config-lgsm/sbotsserver/_default.cfg index 72e55c0a4..61ad1d74b 100644 --- a/lgsm/config-default/config-lgsm/sbotsserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/sbotsserver/_default.cfg @@ -84,6 +84,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## SteamCMD Settings # Server appid appid="974130" diff --git a/lgsm/config-default/config-lgsm/sbserver/_default.cfg b/lgsm/config-default/config-lgsm/sbserver/_default.cfg index 2d76ce0b3..8026983fe 100644 --- a/lgsm/config-default/config-lgsm/sbserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/sbserver/_default.cfg @@ -86,6 +86,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## SteamCMD Settings # Server appid appid="211820" diff --git a/lgsm/config-default/config-lgsm/sdtdserver/_default.cfg b/lgsm/config-default/config-lgsm/sdtdserver/_default.cfg index 59a6d9eb7..b1d94ee0f 100644 --- a/lgsm/config-default/config-lgsm/sdtdserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/sdtdserver/_default.cfg @@ -82,6 +82,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## SteamCMD Settings # Server appid appid="294420" diff --git a/lgsm/config-default/config-lgsm/squadserver/_default.cfg b/lgsm/config-default/config-lgsm/squadserver/_default.cfg index e947bb462..a4f2c704e 100644 --- a/lgsm/config-default/config-lgsm/squadserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/squadserver/_default.cfg @@ -84,6 +84,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## SteamCMD Settings # Server appid appid="403240" diff --git a/lgsm/config-default/config-lgsm/ss3server/_default.cfg b/lgsm/config-default/config-lgsm/ss3server/_default.cfg index 563a93c4d..8a79c7954 100644 --- a/lgsm/config-default/config-lgsm/ss3server/_default.cfg +++ b/lgsm/config-default/config-lgsm/ss3server/_default.cfg @@ -83,6 +83,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## SteamCMD Settings # Server appid appid="41080" diff --git a/lgsm/config-default/config-lgsm/stserver/_default.cfg b/lgsm/config-default/config-lgsm/stserver/_default.cfg index 1b4bef940..9492cb311 100644 --- a/lgsm/config-default/config-lgsm/stserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/stserver/_default.cfg @@ -89,6 +89,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## SteamCMD Settings # Server appid appid="600760" diff --git a/lgsm/config-default/config-lgsm/svenserver/_default.cfg b/lgsm/config-default/config-lgsm/svenserver/_default.cfg index 34a1a70f0..dd434be27 100644 --- a/lgsm/config-default/config-lgsm/svenserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/svenserver/_default.cfg @@ -86,6 +86,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## SteamCMD Settings # Server appid appid="276060" diff --git a/lgsm/config-default/config-lgsm/terrariaserver/_default.cfg b/lgsm/config-default/config-lgsm/terrariaserver/_default.cfg index 9dc763f19..a099b3fb2 100644 --- a/lgsm/config-default/config-lgsm/terrariaserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/terrariaserver/_default.cfg @@ -86,6 +86,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## SteamCMD Settings # Server appid appid="105600" diff --git a/lgsm/config-default/config-lgsm/tf2server/_default.cfg b/lgsm/config-default/config-lgsm/tf2server/_default.cfg index 92eaa64b4..e0a429d99 100644 --- a/lgsm/config-default/config-lgsm/tf2server/_default.cfg +++ b/lgsm/config-default/config-lgsm/tf2server/_default.cfg @@ -92,6 +92,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## SteamCMD Settings # Server appid appid="232250" diff --git a/lgsm/config-default/config-lgsm/tfcserver/_default.cfg b/lgsm/config-default/config-lgsm/tfcserver/_default.cfg index d31998a0b..5f2184566 100644 --- a/lgsm/config-default/config-lgsm/tfcserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/tfcserver/_default.cfg @@ -86,6 +86,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## SteamCMD Settings # Server appid appid="90" diff --git a/lgsm/config-default/config-lgsm/ts3server/_default.cfg b/lgsm/config-default/config-lgsm/ts3server/_default.cfg index f448c2f09..66787fc67 100644 --- a/lgsm/config-default/config-lgsm/ts3server/_default.cfg +++ b/lgsm/config-default/config-lgsm/ts3server/_default.cfg @@ -75,6 +75,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## LinuxGSM Server Details # Do not edit gamename="TeamSpeak 3" diff --git a/lgsm/config-default/config-lgsm/tuserver/_default.cfg b/lgsm/config-default/config-lgsm/tuserver/_default.cfg index 91544d2f1..6764131da 100644 --- a/lgsm/config-default/config-lgsm/tuserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/tuserver/_default.cfg @@ -89,6 +89,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## SteamCMD Settings # Server appid appid="439660" diff --git a/lgsm/config-default/config-lgsm/twserver/_default.cfg b/lgsm/config-default/config-lgsm/twserver/_default.cfg index b983e3b21..eee3683c5 100644 --- a/lgsm/config-default/config-lgsm/twserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/twserver/_default.cfg @@ -86,6 +86,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## SteamCMD Settings # Server appid appid="380840" diff --git a/lgsm/config-default/config-lgsm/untserver/_default.cfg b/lgsm/config-default/config-lgsm/untserver/_default.cfg index 26db0910b..b6cbf28a5 100644 --- a/lgsm/config-default/config-lgsm/untserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/untserver/_default.cfg @@ -93,6 +93,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## SteamCMD Settings # Server appid appid="304930" diff --git a/lgsm/config-default/config-lgsm/ut2k4server/_default.cfg b/lgsm/config-default/config-lgsm/ut2k4server/_default.cfg index 5f32042df..8f5475533 100644 --- a/lgsm/config-default/config-lgsm/ut2k4server/_default.cfg +++ b/lgsm/config-default/config-lgsm/ut2k4server/_default.cfg @@ -80,6 +80,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## LinuxGSM Server Details # Do not edit gamename="Unreal Tournament 2004" diff --git a/lgsm/config-default/config-lgsm/ut3server/_default.cfg b/lgsm/config-default/config-lgsm/ut3server/_default.cfg index 1716e3c0f..3c001c769 100644 --- a/lgsm/config-default/config-lgsm/ut3server/_default.cfg +++ b/lgsm/config-default/config-lgsm/ut3server/_default.cfg @@ -91,6 +91,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## LinuxGSM Server Details # Do not edit gamename="Unreal Tournament 3" diff --git a/lgsm/config-default/config-lgsm/ut99server/_default.cfg b/lgsm/config-default/config-lgsm/ut99server/_default.cfg index 9942968d1..f69c5b7d3 100644 --- a/lgsm/config-default/config-lgsm/ut99server/_default.cfg +++ b/lgsm/config-default/config-lgsm/ut99server/_default.cfg @@ -80,6 +80,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## LinuxGSM Server Details # Do not edit gamename="Unreal Tournament 99" diff --git a/lgsm/config-default/config-lgsm/utserver/_default.cfg b/lgsm/config-default/config-lgsm/utserver/_default.cfg index 8f81eb7da..32ed512e4 100644 --- a/lgsm/config-default/config-lgsm/utserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/utserver/_default.cfg @@ -84,6 +84,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## LinuxGSM Server Details # Do not edit gamename="Unreal Tournament" diff --git a/lgsm/config-default/config-lgsm/vsserver/_default.cfg b/lgsm/config-default/config-lgsm/vsserver/_default.cfg index e6e85f0f9..ee0fcbbb4 100644 --- a/lgsm/config-default/config-lgsm/vsserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/vsserver/_default.cfg @@ -86,6 +86,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## SteamCMD Settings # Server appid appid="90" diff --git a/lgsm/config-default/config-lgsm/wetserver/_default.cfg b/lgsm/config-default/config-lgsm/wetserver/_default.cfg index 31daa3252..64032b699 100644 --- a/lgsm/config-default/config-lgsm/wetserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/wetserver/_default.cfg @@ -76,6 +76,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## LinuxGSM Server Details # Do not edit gamename="Wolfenstein: Enemy Territory" diff --git a/lgsm/config-default/config-lgsm/wurmserver/_default.cfg b/lgsm/config-default/config-lgsm/wurmserver/_default.cfg index c57f1f7c0..479c6eebc 100644 --- a/lgsm/config-default/config-lgsm/wurmserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/wurmserver/_default.cfg @@ -78,6 +78,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## SteamCMD Settings # Server appid appid="402370" diff --git a/lgsm/config-default/config-lgsm/zpsserver/_default.cfg b/lgsm/config-default/config-lgsm/zpsserver/_default.cfg index 9b9c38347..41f892663 100644 --- a/lgsm/config-default/config-lgsm/zpsserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/zpsserver/_default.cfg @@ -92,6 +92,9 @@ logdays="7" # ANSI Colors ansi="on" +# Message Display Time +sleeptime="0.5" + ## SteamCMD Settings # Server appid appid="17505" diff --git a/lgsm/functions/alert_email.sh b/lgsm/functions/alert_email.sh index d3db30319..f1ceb73e5 100644 --- a/lgsm/functions/alert_email.sh +++ b/lgsm/functions/alert_email.sh @@ -9,7 +9,7 @@ local commandaction="Alert" local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" fn_print_dots "Sending Email alert: ${email}" -sleep 0.5 +fn_sleep_time if [ -n "${emailfrom}" ]; then mail -s "${alertsubject}" -r "${emailfrom}" "${email}" < "${alertlog}" diff --git a/lgsm/functions/alert_ifttt.sh b/lgsm/functions/alert_ifttt.sh index 07c99dda6..261f3de62 100644 --- a/lgsm/functions/alert_ifttt.sh +++ b/lgsm/functions/alert_ifttt.sh @@ -18,7 +18,6 @@ EOF ) fn_print_dots "Sending IFTTT alert" -sleep 0.5 iftttsend=$(${curlpath} -sSL -H "Content-Type: application/json" -X POST -d """${json}""" "https://maker.ifttt.com/trigger/${iftttevent}/with/key/${ifttttoken}" | grep "Bad Request") if [ -n "${iftttsend}" ]; then @@ -27,4 +26,4 @@ if [ -n "${iftttsend}" ]; then else fn_print_ok_nl "Sending IFTTT alert" fn_script_log_pass "Sent IFTTT alert" -fi \ No newline at end of file +fi diff --git a/lgsm/functions/alert_mailgun.sh b/lgsm/functions/alert_mailgun.sh index d42aaddab..8b32b73a8 100644 --- a/lgsm/functions/alert_mailgun.sh +++ b/lgsm/functions/alert_mailgun.sh @@ -9,7 +9,6 @@ local commandaction="Alert" local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" fn_print_dots "Sending Email alert: Mailgun: ${email}" -sleep 0.5 mailgunsend=$(${curlpath} -s --user "api:${mailguntoken}" \ -F from="LinuxGSM <${mailgunemailfrom}>" \ @@ -25,4 +24,4 @@ if [ -z "${mailgunsend}" ]; then else fn_print_ok_nl "Sending Email alert: Mailgun: ${email}" fn_script_log_pass "Sending Email alert: Mailgun: ${email}" -fi \ No newline at end of file +fi diff --git a/lgsm/functions/alert_pushbullet.sh b/lgsm/functions/alert_pushbullet.sh index aebef54ab..72995a70f 100644 --- a/lgsm/functions/alert_pushbullet.sh +++ b/lgsm/functions/alert_pushbullet.sh @@ -19,7 +19,6 @@ EOF ) fn_print_dots "Sending Pushbullet alert" -sleep 0.5 pushbulletsend=$(${curlpath} -sSL -u """${pushbullettoken}"":" -H "Content-Type: application/json" -X POST -d """${json}""" "https://api.pushbullet.com/v2/pushes" | grep "error_code") if [ -n "${pushbulletsend}" ]; then diff --git a/lgsm/functions/alert_pushover.sh b/lgsm/functions/alert_pushover.sh index d25e598c6..352737261 100644 --- a/lgsm/functions/alert_pushover.sh +++ b/lgsm/functions/alert_pushover.sh @@ -9,7 +9,6 @@ local commandaction="Alert" local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" fn_print_dots "Sending Pushover alert" -sleep 0.5 # Different alerts are given different priorities and notification sounds if [ "${alertsound}" == "1" ]; then @@ -32,4 +31,4 @@ if [ -n "${pushoversend}" ]; then else fn_print_ok_nl "Sending Pushover alert" fn_script_log_pass "Sent Pushover alert" -fi \ No newline at end of file +fi diff --git a/lgsm/functions/alert_telegram.sh b/lgsm/functions/alert_telegram.sh index 647ea7008..331c0a6de 100644 --- a/lgsm/functions/alert_telegram.sh +++ b/lgsm/functions/alert_telegram.sh @@ -18,7 +18,6 @@ EOF ) fn_print_dots "Sending Telegram alert" -sleep 0.5 telegramsend=$(${curlpath} -sSL -H "Content-Type: application/json" -X POST -d """${json}""" "https://api.telegram.org/bot${telegramtoken}/sendMessage" ${curlcustomstring} | grep "error_code") if [ -n "${telegramsend}" ]; then diff --git a/lgsm/functions/check_config.sh b/lgsm/functions/check_config.sh index dff515742..2f507808b 100644 --- a/lgsm/functions/check_config.sh +++ b/lgsm/functions/check_config.sh @@ -10,12 +10,10 @@ local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" if [ ! -e "${servercfgfullpath}" ]; then if [ "${shortname}" != "hw" ]&&[ "${shortname}" != "ut3" ]&&[ "${shortname}" != "kf2" ]; then fn_print_dots "" - sleep 0.5 fn_print_warn_nl "Configuration file missing!" echo "${servercfgfullpath}" fn_script_log_warn "Configuration file missing!" fn_script_log_warn "${servercfgfullpath}" - sleep 1 install_config.sh fi fi @@ -23,7 +21,6 @@ fi if [ "${shortname}" == "rust" ]; then if [ -z "${rconpassword}" ]; then fn_print_dots "" - sleep 0.5 fn_print_fail_nl "RCON password is not set!" echo " * Not setting an RCON password causes issues with ${gamename}" fn_script_log_fatal "RCON password is not set" @@ -31,10 +28,8 @@ if [ "${shortname}" == "rust" ]; then core_exit.sh elif [ "${rconpassword}" == "CHANGE_ME" ]; then fn_print_dots "" - sleep 0.5 fn_print_warn_nl "Default RCON Password detected!" echo " * Having ${rconpassword} as a password is not very safe." fn_script_log_warn "Default RCON Password detected" - sleep 2 fi fi diff --git a/lgsm/functions/check_deps.sh b/lgsm/functions/check_deps.sh index 351c848d3..d69926f8f 100644 --- a/lgsm/functions/check_deps.sh +++ b/lgsm/functions/check_deps.sh @@ -9,7 +9,6 @@ local commandname="CHECK" fn_install_mono_repo(){ if [ "${monostatus}" != "0" ]; then fn_print_dots "Adding Mono repository" - sleep 0.5 if [ "${autoinstall}" == "1" ]; then sudo -n true > /dev/null 2>&1 else @@ -107,7 +106,6 @@ fn_install_universe_repo(){ if [ "${jquniversemissing}" != "0" ]&&[ "${distroid}" == "ubuntu" ]; then fn_print_warning_nl "Ubuntu 18.04.1 contains a bug which means the sources.list file does not populate with the Ubuntu universe repository." fn_print_information_nl "Attempting to add Universe Repo" - sleep 0.5 if [ "${autoinstall}" == "1" ]; then sudo -n true > /dev/null 2>&1 else @@ -180,14 +178,14 @@ fn_deps_detector(){ missingdep=0 if [ "${function_selfname}" == "command_install.sh" ]; then echo -e "${green}${deptocheck}${default}" - sleep 0.2 + fn_sleep_time fi else # if dependency is not found missingdep=1 if [ "${function_selfname}" == "command_install.sh" ]; then echo -e "${red}${deptocheck}${default}" - sleep 0.2 + fn_sleep_time fi # Define required dependencies for SteamCMD if [ -n "${appid}" ]; then @@ -231,7 +229,7 @@ fn_found_missing_deps(){ fn_print_warning_nl "Missing dependencies: ${red}${array_deps_missing[@]}${default}" fn_script_log_warn "Missing dependencies: ${array_deps_missing[@]}" - sleep 0.5 + fn_sleep_time if [ -n "${monostatus}" ]; then fn_install_mono_repo fi @@ -553,7 +551,7 @@ if [ "${function_selfname}" == "command_install.sh" ]; then echo "=================================" fn_print_information_nl "Checking any missing dependencies for ${gamename} server only." fn_print_information_nl "This will NOT install a ${gamename} server." - sleep 2 + fn_sleep_time else echo "" echo "Checking Dependencies" diff --git a/lgsm/functions/check_glibc.sh b/lgsm/functions/check_glibc.sh index d353ed8af..7abf46dd1 100644 --- a/lgsm/functions/check_glibc.sh +++ b/lgsm/functions/check_glibc.sh @@ -13,12 +13,10 @@ if [ "${glibcrequired}" == "NOT REQUIRED" ]; then : elif [ "$(printf '%s\n'${glibcrequired}'\n' "${glibcversion}" | sort -V | head -n 1)" != "${glibcrequired}" ]||[ "${glibcrequired}" == "UNKNOWN" ]; then fn_print_dots "Glibc" - sleep 0.5 fn_print_error_nl "glibc: ${red}glibc distro version ${glibcversion} too old${default}" echo -en "\n" echo -e " * glibc required: ${glibcrequired}" echo -e " * glibc installed: ${red}${glibcversion}${default}" echo -en "\n" fn_print_information "The game server will probably not work. A distro upgrade is required!" - sleep 2 -fi \ No newline at end of file +fi diff --git a/lgsm/functions/check_ip.sh b/lgsm/functions/check_ip.sh index ba0fd6ece..d9390ac0e 100644 --- a/lgsm/functions/check_ip.sh +++ b/lgsm/functions/check_ip.sh @@ -21,7 +21,6 @@ if [ "${shortname}" != "ts3" ]&&[ "${shortname}" != "mumble" ]&&[ "${travistest} # IP is not set to specific IP if [ "${ip}" == "0.0.0.0" ]||[ "${ip}" == "" ]; then fn_print_dots "Check IP" - sleep 0.2 # Multiple interfaces if [ "${getipwc}" -ge "2" ]; then if [ "${function_selfname}" == "command_details.sh" ]; then @@ -29,7 +28,6 @@ if [ "${shortname}" != "ts3" ]&&[ "${shortname}" != "mumble" ]&&[ "${travistest} else fn_print_fail "Check IP: Multiple IP addresses found." fi - sleep 0.2 echo -en "\n" # IP is set within game config if [ "${ipsetinconfig}" == "1" ]; then @@ -66,7 +64,6 @@ if [ "${shortname}" != "ts3" ]&&[ "${shortname}" != "mumble" ]&&[ "${travistest} # Single interface elif [ "${ipsetinconfig}" == "1" ]; then fn_print_fail "Check IP: IP address not set in game config." - sleep 0.5 echo -en "\n" fn_print_information "Specify the IP you want to bind within ${servercfg}.\n" echo -en " * location: ${servercfgfullpath}\n" @@ -85,7 +82,6 @@ if [ "${shortname}" != "ts3" ]&&[ "${shortname}" != "mumble" ]&&[ "${travistest} else fn_print_info_nl "Check IP: ${getip}" fn_script_log_info "IP automatically set as: ${getip}" - sleep 0.2 ip="${getip}" fi fi diff --git a/lgsm/functions/check_logs.sh b/lgsm/functions/check_logs.sh index 717e53ada..1a71f3dfd 100644 --- a/lgsm/functions/check_logs.sh +++ b/lgsm/functions/check_logs.sh @@ -9,7 +9,6 @@ local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" fn_check_logs(){ fn_print_dots "Checking for log files" - sleep 0.5 fn_print_info_nl "Checking for log files: Creating log files" checklogs=1 install_logs.sh diff --git a/lgsm/functions/check_permissions.sh b/lgsm/functions/check_permissions.sh index f1bca798d..e1c0cabd7 100644 --- a/lgsm/functions/check_permissions.sh +++ b/lgsm/functions/check_permissions.sh @@ -171,7 +171,7 @@ fn_sys_perm_fix_manually_msg(){ fn_script_log_info "To fix this issue, run the following command as root:" echo " chmod a+rx /sys /sys/class /sys/class/net" fn_script_log "chmod a+rx /sys /sys/class /sys/class/net" - sleep 0.5 + fn_sleep_time if [ "${monitorflag}" == 1 ]; then alert="permissions" alert.sh @@ -184,7 +184,6 @@ fn_sys_perm_errors_fix(){ sudo -n true > /dev/null 2>&1 if [ $? -eq 0 ]; then fn_print_dots "Automatically fixing /sys permissions" - sleep 0.5 fn_script_log_info "Automatically fixing /sys permissions." if [ "${sysdirpermerror}" == "1" ]; then sudo chmod a+rx "/sys" @@ -200,13 +199,12 @@ fn_sys_perm_errors_fix(){ if [ "${sysdirpermerror}" == "1" ]||[ "${classdirpermerror}" == "1" ]||[ "${netdirpermerror}" == "1" ]; then fn_print_error "Could not fix /sys permissions" fn_script_log_error "Could not fix /sys permissions." - sleep 0.5 + fn_sleep_time # Show the user how to fix fn_sys_perm_fix_manually_msg else fn_print_ok_nl "Automatically fixing /sys permissions" fn_script_log_pass "Permissions in /sys fixed" - sleep 0.5 fi else # Show the user how to fix @@ -221,7 +219,6 @@ fn_sys_perm_error_process(){ if [ "${sysdirpermerror}" == "1" ]||[ "${classdirpermerror}" == "1" ]||[ "${netdirpermerror}" == "1" ]; then fn_print_error_nl "Permission error(s) found in /sys" fn_script_log_error "Permission error(s) found in /sys" - sleep 0.5 # Run the fix fn_sys_perm_errors_fix fi diff --git a/lgsm/functions/check_steamcmd.sh b/lgsm/functions/check_steamcmd.sh index f47abf359..518696e0e 100644 --- a/lgsm/functions/check_steamcmd.sh +++ b/lgsm/functions/check_steamcmd.sh @@ -52,7 +52,6 @@ fn_check_steamcmd_sh(){ else fn_print_error_nl "SteamCMD is missing" fn_script_log_error "SteamCMD is missing" - sleep 0.5 fn_install_steamcmd fi elif [ "${function_selfname}" == "command_install.sh" ]; then diff --git a/lgsm/functions/check_system_requirements.sh b/lgsm/functions/check_system_requirements.sh index 96a73f8e6..d0cf9bf8d 100644 --- a/lgsm/functions/check_system_requirements.sh +++ b/lgsm/functions/check_system_requirements.sh @@ -42,11 +42,9 @@ fi if [ -n "${ramrequirementmb}" ]; then if [ "${physmemtotalmb}" -lt "${ramrequirementmb}" ]; then fn_print_dots "Check RAM" - sleep 0.5 # Warn the user fn_print_warn_nl "Check RAM: ${ramrequirementgb}G required, ${physmemtotal} available" - sleep 0.5 echo " * ${gamename} server may fail to run or experience poor performance." - sleep 0.5 + fn_sleep_time fi fi diff --git a/lgsm/functions/command_backup.sh b/lgsm/functions/command_backup.sh index c5d48e202..c5530440d 100644 --- a/lgsm/functions/command_backup.sh +++ b/lgsm/functions/command_backup.sh @@ -17,7 +17,6 @@ fn_backup_trap(){ echo -en "backup ${backupname}.tar.gz..." fn_print_canceled_eol_nl fn_script_log_info "Backup ${backupname}.tar.gz: CANCELED" - sleep 0.5 rm -f "${backupdir}/${backupname}.tar.gz" | tee -a "${lgsmlog}" echo -en "backup ${backupname}.tar.gz..." fn_print_removed_eol_nl @@ -44,10 +43,7 @@ fn_backup_init(){ info_distro.sh fn_print_dots "Backup starting" fn_script_log_info "Backup starting" - sleep 0.5 - fn_print_ok "Backup starting" - sleep 0.5 - echo -en "\n" + fn_print_ok_nl "Backup starting" if [ ! -d "${backupdir}" ]||[ "${backupcount}" == "0" ]; then fn_print_info_nl "There are no previous backups" else @@ -59,7 +55,6 @@ fn_backup_init(){ daysago="${lastbackupdaysago} days ago" fi echo " * Previous backup was created ${daysago}, total size ${lastbackupsize}" - sleep 0.5 fi } @@ -80,7 +75,6 @@ fn_backup_stop_server(){ else fn_print_warn_nl "${servicename} will be stopped during the backup" fn_script_log_warn "${servicename} will be stopped during the backup" - sleep 5 serverstopped="yes" exitbypass=1 command_stop.sh @@ -109,7 +103,6 @@ fn_backup_compression(){ # Tells how much will be compressed using rootdirduexbackup value from info_distro and prompt for continue fn_print_info "A total of ${rootdirduexbackup} will be compressed." fn_script_log_info "A total of ${rootdirduexbackup} will be compressed: ${backupdir}/${backupname}.tar.gz" - sleep 2 fn_print_dots "Backup (${rootdirduexbackup}) ${backupname}.tar.gz, in progress..." fn_script_log_info "backup ${rootdirduexbackup} ${backupname}.tar.gz, in progress" excludedir=$(fn_backup_relpath) @@ -131,7 +124,6 @@ fn_backup_compression(){ fn_script_log_fatal "Starting backup" else fn_print_ok_eol - sleep 0.5 fn_print_ok_nl "Completed: ${backupname}.tar.gz, total size $(du -sh "${backupdir}/${backupname}.tar.gz" | awk '{print $1}')" fn_script_log_pass "Backup created: ${backupname}.tar.gz, total size $(du -sh "${backupdir}/${backupname}.tar.gz" | awk '{print $1}')" fi @@ -153,18 +145,15 @@ fn_backup_prune(){ if [ "${backupquotadiff}" -gt "0" ]||[ "${backupsoudatedcount}" -gt "0" ]; then fn_print_dots "Pruning" fn_script_log_info "Backup pruning activated" - sleep 0.5 fn_print_ok_nl "Pruning" - sleep 0.5 # If maxbackups greater or equal to backupsoutdatedcount, then it is over maxbackupdays if [ "${backupquotadiff}" -ge "${backupsoudatedcount}" ]; then # Display how many backups will be cleared echo " * Pruning: ${backupquotadiff} backup(s) has exceeded the ${maxbackups} backups limit" fn_script_log_info "Pruning: ${backupquotadiff} backup(s) has exceeded the ${maxbackups} backups limit" - sleep 0.5 + fn_sleep_time fn_print_dots "Pruning: Clearing ${backupquotadiff} backup(s)" fn_script_log_info "Pruning: Clearing ${backupquotadiff} backup(s)" - sleep 0.5 # Clear backups over quota find "${backupdir}"/ -type f -name "*.tar.gz" -printf '%T@ %p\n' | sort -rn | tail -${backupquotadiff} | cut -f2- -d" " | xargs rm fn_print_ok_nl "Pruning: Clearing ${backupquotadiff} backup(s)" @@ -174,16 +163,14 @@ fn_backup_prune(){ # Display how many backups will be cleared echo " * Pruning: ${backupsoudatedcount} backup(s) are older than ${maxbackupdays} days." fn_script_log_info "Pruning: ${backupsoudatedcount} backup(s) older than ${maxbackupdays} days." - sleep 0.5 + fn_sleep_time fn_print_dots "Pruning: Clearing ${backupquotadiff} backup(s)." fn_script_log_info "Pruning: Clearing ${backupquotadiff} backup(s)" - sleep 0.5 # Clear backups over quota find "${backupdir}"/ -type f -mtime +"${maxbackupdays}" -exec rm -f {} \; fn_print_ok_nl "Pruning: Clearing ${backupquotadiff} backup(s)" fn_script_log_pass "Pruning: Cleared ${backupquotadiff} backup(s)" fi - sleep 0.5 fi fi } diff --git a/lgsm/functions/command_console.sh b/lgsm/functions/command_console.sh index 8daf02105..26f0a4707 100644 --- a/lgsm/functions/command_console.sh +++ b/lgsm/functions/command_console.sh @@ -22,19 +22,16 @@ if ! fn_prompt_yn "Continue?" Y; then echo Exiting; return fi fn_print_dots "Accessing console" -sleep 0.5 check_status.sh if [ "${status}" != "0" ]; then fn_print_ok_nl "Accessing console" fn_script_log_pass "Console accessed" - sleep 0.5 tmux attach-session -t "${servicename}" fn_print_ok_nl "Closing console" fn_script_log_pass "Console closed" else fn_print_error_nl "Server not running" fn_script_log_error "Failed to access: Server not running" - sleep 0.5 if fn_prompt_yn "Do you want to start the server?" Y; then exitbypass=1 command_start.sh diff --git a/lgsm/functions/command_debug.sh b/lgsm/functions/command_debug.sh index 7664ff8be..1ae89fb94 100644 --- a/lgsm/functions/command_debug.sh +++ b/lgsm/functions/command_debug.sh @@ -80,12 +80,10 @@ fi fn_print_info_nl "Stopping any running servers" fn_script_log_info "Stopping any running servers" -sleep 0.5 exitbypass=1 command_stop.sh fn_print_dots "Starting debug" fn_script_log_info "Starting debug" -sleep 0.5 fn_print_ok_nl "Starting debug" # Create lockfile @@ -111,7 +109,6 @@ else fi fn_print_dots "Stopping debug" -sleep 1 fn_print_ok_nl "Stopping debug" # remove trap. trap - INT diff --git a/lgsm/functions/command_fastdl.sh b/lgsm/functions/command_fastdl.sh index 3c0d6b356..f686e6126 100644 --- a/lgsm/functions/command_fastdl.sh +++ b/lgsm/functions/command_fastdl.sh @@ -77,7 +77,7 @@ fn_clear_old_fastdl(){ fn_print_ok_eol_nl fn_script_log_pass "Clearing existing FastDL directory ${fastdldir}" fi - sleep 0.5 + fn_sleep_time fi } @@ -95,7 +95,7 @@ fn_fastdl_dirs(){ fn_print_ok_eol_nl fn_script_log_pass "Creating web directory ${webdir}" fi - sleep 0.5 + fn_sleep_time fi if [ ! -d "${fastdldir}" ]; then echo -en "creating fastdl directory ${fastdldir}..." @@ -109,7 +109,7 @@ fn_fastdl_dirs(){ fn_print_ok_eol_nl fn_script_log_pass "Creating fastdl directory ${fastdldir}" fi - sleep 0.5 + fn_sleep_time fi } @@ -204,7 +204,7 @@ fn_fastdl_preview(){ fi if [ -f "${tmpdir}/fastdl_files_to_compress.txt" ]; then echo "calculating total file size..." - sleep 0.5 + fn_sleep_time totalfiles=$(wc -l < "${tmpdir}/fastdl_files_to_compress.txt") # Calculates total file size while read -r dufile; do @@ -271,7 +271,7 @@ fn_fastdl_gmod(){ fi # Clear addons directory in fastdl echo -en "clearing addons dir from fastdl dir..." - sleep 0.5 + fn_sleep_time rm -R "${fastdldir:?}/addons" exitcode=$? if [ ${exitcode} -ne 0 ]; then @@ -286,7 +286,7 @@ fn_fastdl_gmod(){ # Correct content that may be into a lua directory by mistake like some darkrpmodification addons if [ -d "${fastdldir}/lua" ]; then echo -en "correcting DarkRP files..." - sleep 1 + fn_sleep_time cp -Rf "${fastdldir}/lua/"* "${fastdldir}" exitcode=$? if [ ${exitcode} -ne 0 ]; then @@ -331,7 +331,7 @@ fn_fastdl_source(){ ((fileswc++)) tput rc; tput el printf "copying ${directory} ${allowed_extention} : ${fileswc}..." - sleep 0.01 + fn_sleep_time if [ ! -d "${fastdldir}/${directory}" ]; then mkdir "${fastdldir}/${directory}" fi diff --git a/lgsm/functions/command_mods_install.sh b/lgsm/functions/command_mods_install.sh index b26bb9e06..38bc4979a 100644 --- a/lgsm/functions/command_mods_install.sh +++ b/lgsm/functions/command_mods_install.sh @@ -85,7 +85,6 @@ if [ -f "${modsinstalledlistfullpath}" ]; then if [ -n "$(sed -n "/^${modcommand}$/p" "${modsinstalledlistfullpath}")" ]; then fn_print_warning_nl "${modprettyname} is already installed" fn_script_log_warn "${modprettyname} is already installed" - sleep 0.5 echo " * Any configs may be overwritten." if ! fn_prompt_yn "Continue?" Y; then echo Exiting; core_exit.sh diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index 7a0eb7dd2..344f9e2a9 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -58,7 +58,7 @@ fn_script_log_info "Removing ${modsfilelistsize} files from ${modprettyname}" echo -e "removing ${modprettyname}" echo -e "* ${modsfilelistsize} files to be removed" echo -e "* location: ${modinstalldir}" -sleep 0.5 +fn_sleep_time # Go through every file and remove it modfileline="1" tput sc @@ -87,10 +87,10 @@ if [ ${exitcode} -ne 0 ]; then else fn_print_ok_eol_nl fi -sleep 0.5 +fn_sleep_time # Remove file list echo -en "removing ${modcommand}-files.txt..." -sleep 0.5 +fn_sleep_time rm -rf "${modsdir}/${modcommand}-files.txt" local exitcode=$? if [ ${exitcode} -ne 0 ]; then @@ -104,7 +104,7 @@ fi # Remove mods from installed mods list echo -en "removing ${modcommand} from ${modsinstalledlist}..." -sleep 0.5 +fn_sleep_time sed -i "/^${modcommand}$/d" "${modsinstalledlistfullpath}" local exitcode=$? diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index b80e4416e..43eb1cb80 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -17,7 +17,7 @@ mods_core.sh fn_remove_cfg_files(){ if [ "${modkeepfiles}" != "OVERWRITE" ]&&[ "${modkeepfiles}" != "NOUPDATE" ]; then echo -e "the following files/directories will be preserved:" - sleep 0.5 + fn_sleep_time # Count how many files there are to remove filestopreserve="$(echo "${modkeepfiles}" | awk -F ';' '{ print NF }')" # Test all subvalues of "modkeepfiles" using the ";" separator @@ -39,7 +39,6 @@ fn_remove_cfg_files(){ } fn_print_dots "Update addons/mods" -sleep 0.5 fn_mods_check_installed fn_print_info_nl "Update addons/mods: ${installedmodscount} addons/mods will be updated" fn_script_log_info "${installedmodscount} mods or addons will be updated" @@ -66,7 +65,6 @@ for ((ulindex=0; ulindex < ${#installedmodslist[@]}; ulindex++)); do echo -e " * ${yellow}${modprettyname}${default} (retain common custom files)" fi done -sleep 0.5 ## Update # List all installed mods and apply update diff --git a/lgsm/functions/command_monitor.sh b/lgsm/functions/command_monitor.sh index 491015bcc..9760380de 100644 --- a/lgsm/functions/command_monitor.sh +++ b/lgsm/functions/command_monitor.sh @@ -18,7 +18,6 @@ for queryattempt in {1..5}; do fn_print_dots "Querying port: ${querymethod}: ${ip}:${queryport} : ${totalseconds}/${queryattempt}: " fn_print_querying_eol fn_script_log_info "Querying port: ${querymethod}: ${ip}:${queryport} : ${queryattempt} : QUERYING" - sleep 0.5 if [ "${querymethod}" == "gamedig" ]; then query_gamedig.sh elif [ "${querymethod}" == "gsquery" ]; then @@ -37,7 +36,6 @@ for queryattempt in {1..5}; do if [ "${querystatus}" == "0" ]; then # Server query OK. - sleep 0.5 fn_print_ok "Querying port: ${querymethod}: ${ip}:${queryport} : ${totalseconds}/${queryattempt}: " fn_print_ok_eol_nl fn_script_log_pass "Querying port: ${querymethod}: ${ip}:${queryport} : ${queryattempt}: OK" @@ -48,7 +46,6 @@ for queryattempt in {1..5}; do fn_script_log_info "Querying port: ${querymethod}: ${ip}:${queryport} : ${queryattempt}: FAIL" fn_print_fail "Querying port: ${querymethod}: ${ip}:${queryport} : ${totalseconds}/${queryattempt}: " fn_print_fail_eol - sleep 0.5 # Monitor try gamedig first then gsquery before restarting. if [ "${querymethod}" == "gsquery" ]; then if [ "${totalseconds}" -ge "59" ]; then @@ -56,7 +53,6 @@ for queryattempt in {1..5}; do fn_print_fail "Querying port: ${querymethod}: ${ip}:${queryport} : ${totalseconds}/${queryattempt}: " fn_print_fail_eol_nl fn_script_log_error "Querying port: ${querymethod}: ${ip}:${queryport} : ${queryattempt}: FAIL" - sleep 0.5 # Send alert if enabled. alert="restartquery" @@ -74,7 +70,6 @@ for queryattempt in {1..5}; do for seconds in {1..15}; do fn_print_fail "Querying port: ${querymethod}: ${ip}:${queryport} : ${totalseconds}/${queryattempt}: WAIT" totalseconds=$((totalseconds + 1)) - sleep 1 if [ "${seconds}" == "15" ]; then break fi @@ -98,7 +93,6 @@ fn_monitor_check_update(){ if [ "$(ps -ef | grep "${selfname} update" | grep -v grep | wc -l)" != "0" ]; then fn_print_error_nl "SteamCMD is currently checking for updates" fn_script_log_error "SteamCMD is currently checking for updates" - sleep 0.5 core_exit.sh fi } @@ -107,7 +101,6 @@ fn_monitor_check_session(){ fn_print_dots "Checking session: " fn_print_checking_eol fn_script_log_info "Checking session: CHECKING" - sleep 0.5 if [ "${status}" != "0" ]; then fn_print_ok "Checking session: " fn_print_ok_eol_nl @@ -125,11 +118,9 @@ fn_monitor_check_session(){ alert="restart" alert.sh fn_script_log_info "Monitor is starting ${servername}" - sleep 0.5 command_restart.sh core_exit.sh fi - sleep 0.5 } fn_monitor_query(){ @@ -185,7 +176,6 @@ fn_monitor_query_upd(){ monitorflag=1 fn_print_dots "${servername}" -sleep 0.5 check.sh logs.sh info_config.sh diff --git a/lgsm/functions/command_postdetails.sh b/lgsm/functions/command_postdetails.sh index 660bb326f..4b34c9f39 100644 --- a/lgsm/functions/command_postdetails.sh +++ b/lgsm/functions/command_postdetails.sh @@ -80,7 +80,6 @@ fi if [ "${posttarget}" == "http://pastebin.com" ] ; then fn_print_dots "Posting details to pastbin.com for ${postexpire}" - sleep 0.5 # grab the return from 'value' from an initial visit to pastebin. csrftoken=$(${curlpath} -s "${posttarget}" | sed -n 's/^.*input type="hidden" name="csrf_token_post" value="\(.*\)".*$/\1/p') @@ -100,7 +99,6 @@ if [ "${posttarget}" == "http://pastebin.com" ] ; then echo " Please share the following url for support: ${pdurl}" elif [ "${posttarget}" == "https://hastebin.com" ] ; then fn_print_dots "Posting details to hastebin.com" - sleep 0.5 # hastebin is a bit simpler. If successful, the returned result # should look like: {"something":"key"}, putting the reference that # we need in "key". TODO - error handling. -CedarLUG @@ -117,4 +115,4 @@ if [ -z "${alertflag}" ]; then core_exit.sh else alerturl="${pdurl}" -fi \ No newline at end of file +fi diff --git a/lgsm/functions/command_start.sh b/lgsm/functions/command_start.sh index d61907ee0..1ab7b4403 100644 --- a/lgsm/functions/command_start.sh +++ b/lgsm/functions/command_start.sh @@ -15,16 +15,16 @@ fn_start_teamspeak3(){ fn_script_log_warn "${servercfgfullpath} is missing" echo " * Creating blank ${servercfg}" fn_script_log_info "Creating blank ${servercfg}" - sleep 1 + fn_sleep_time echo " * ${servercfg} can remain blank by default." fn_script_log_info "${servercfgfullpath} can remain blank by default." - sleep 1 + fn_sleep_time echo " * ${servercfg} is located in ${servercfgfullpath}." fn_script_log_info "${servercfg} is located in ${servercfgfullpath}." sleep 5 touch "${servercfgfullpath}" fi - sleep 0.5 + fn_sleep_time if [ -f "${lgsmlog}" ]; then mv "${lgsmlog}" "${lgsmlogdate}" fi @@ -40,7 +40,7 @@ fn_start_teamspeak3(){ else ./ts3server_startscript.sh start inifile="${servercfgfullpath}" > /dev/null 2>&1 fi - sleep 0.5 + fn_sleep_time check_status.sh if [ "${status}" == "0" ]; then fn_print_fail_nl "Unable to start ${servername}" @@ -128,14 +128,13 @@ if [ "${consolelogging}" == "off" ]; then echo "Console logging disabled by user" >> "${consolelog}" fn_script_log_info "Console logging disabled by user" fi -sleep 0.5 +fn_sleep_time # If the server fails to start check_status.sh if [ "${status}" == "0" ]; then fn_print_fail_nl "Unable to start ${servername}" fn_script_log_fatal "Unable to start ${servername}" - sleep 0.5 if [ -s "${lgsmlogdir}/.${servicename}-tmux-error.tmp" ]; then fn_print_fail_nl "Unable to start ${servername}: Tmux error:" fn_script_log_fatal "Unable to start ${servername}: Tmux error:" @@ -187,7 +186,6 @@ sleep 0.5 } fn_print_dots "${servername}" -sleep 0.5 check.sh # Is the server already started if [ "${status}" != "0" ]; then # $status comes from check_status.sh, which is run by check.sh for this command diff --git a/lgsm/functions/command_stop.sh b/lgsm/functions/command_stop.sh index fc43476e6..9aadfbe54 100644 --- a/lgsm/functions/command_stop.sh +++ b/lgsm/functions/command_stop.sh @@ -33,7 +33,7 @@ fn_stop_graceful_ctrlc(){ fn_print_fail_eol_nl fn_script_log_error "Graceful: CTRL+c: FAIL" fi - sleep 0.5 + fn_sleep_time } # Attempts graceful shutdown by sending a specified command. @@ -62,7 +62,7 @@ fn_stop_graceful_cmd(){ fn_print_fail_eol_nl fn_script_log_error "Graceful: sending \"${1}\": FAIL" fi - sleep 0.5 + fn_sleep_time } # Attempts graceful of goldsource using rcon 'quit' command. @@ -82,7 +82,6 @@ fn_stop_graceful_goldsource(){ fn_print_ok "Graceful: sending \"quit\": ${seconds}: " fn_print_ok_eol_nl fn_script_log_pass "Graceful: sending \"quit\": OK: ${seconds} seconds" - sleep 0.5 } # Attempts graceful of 7 Days To Die using telnet. @@ -119,13 +118,12 @@ fn_stop_telnet_sdtd(){ expect { eof } puts "Completed.\n" ') - fi + fi } fn_stop_graceful_sdtd(){ fn_print_dots "Graceful: telnet" fn_script_log_info "Graceful: telnet" - sleep 0.5 if [ "${telnetenabled}" == "false" ]; then fn_print_info_nl "Graceful: telnet: DISABLED: Enable in ${servercfg}" elif [ "$(command -v expect 2>/dev/null)" ]; then @@ -133,7 +131,6 @@ fn_stop_graceful_sdtd(){ for telnetip in 127.0.0.1 ${ip}; do fn_print_dots "Graceful: telnet: ${telnetip}:${telnetport}" fn_script_log_info "Graceful: telnet: ${telnetip}:${telnetport}" - sleep 0.5 fn_stop_telnet_sdtd completed=$(echo -en "\n ${sdtd_telnet_shutdown}" | grep "Completed.") refused=$(echo -en "\n ${sdtd_telnet_shutdown}" | grep "Timeout or EOF") @@ -141,7 +138,6 @@ fn_stop_graceful_sdtd(){ fn_print_error "Graceful: telnet: ${telnetip}:${telnetport} : " fn_print_fail_eol_nl fn_script_log_error "Graceful: telnet: ${telnetip}:${telnetport} : FAIL" - sleep 1 elif [ -n "${completed}" ]; then break fi @@ -183,7 +179,7 @@ fn_stop_graceful_sdtd(){ fn_print_fail_eol_nl fn_script_log_warn "Graceful: telnet: expect not installed: FAIL" fi - sleep 0.5 + fn_sleep_time } fn_stop_graceful_select(){ @@ -233,7 +229,6 @@ fn_stop_ark(){ # and a valid numeric pid remains unchanged. if [ "${pid}" -gt 1 ]&&[ "${pid}" -le "$(cat "/proc/sys/kernel/pid_max")" ]; then fn_print_dots "Process still bound. Awaiting graceful exit: ${pidcheck}" - sleep 0.5 else break # Our job is done here fi # end if for pid range check @@ -249,7 +244,6 @@ fn_stop_ark(){ fn_stop_teamspeak3(){ fn_print_dots "${servername}" - sleep 0.5 "${serverfiles}"/ts3server_startscript.sh stop > /dev/null 2>&1 check_status.sh if [ "${status}" == "0" ]; then @@ -266,10 +260,9 @@ fn_stop_teamspeak3(){ fn_stop_tmux(){ fn_print_dots "${servername}" fn_script_log_info "tmux kill-session: ${servername}" - sleep 0.5 # Kill tmux session tmux kill-session -t "${servicename}" > /dev/null 2>&1 - sleep 0.5 + fn_sleep_time check_status.sh if [ "${status}" == "0" ]; then # ARK doesn't clean up immediately after tmux is killed. @@ -304,7 +297,6 @@ fn_stop_pre_check(){ } fn_print_dots "${servername}" -sleep 0.5 check.sh info_config.sh fn_stop_pre_check @@ -314,4 +306,4 @@ if [ -f "${rootdir}/${lockselfname}" ]; then fi if [ -z "${exitbypass}" ]; then core_exit.sh -fi \ No newline at end of file +fi diff --git a/lgsm/functions/command_test_alert.sh b/lgsm/functions/command_test_alert.sh index ff5084696..014e082b2 100644 --- a/lgsm/functions/command_test_alert.sh +++ b/lgsm/functions/command_test_alert.sh @@ -9,7 +9,6 @@ local commandaction="Alert" local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" fn_print_dots "${servername}" -sleep 0.5 check.sh info_config.sh alert="test" diff --git a/lgsm/functions/command_ts3_server_pass.sh b/lgsm/functions/command_ts3_server_pass.sh index cbd3ad9ae..46a028a98 100644 --- a/lgsm/functions/command_ts3_server_pass.sh +++ b/lgsm/functions/command_ts3_server_pass.sh @@ -25,14 +25,12 @@ fn_serveradmin_password_prompt(){ fn_serveradmin_password_set(){ fn_print_info_nl "Starting server with new password..." fn_script_log_info "Starting server with new password" - sleep 0.5 # Start server in "new password mode" ts3serverpass="1" exitbypass="1" command_start.sh fn_print_ok_nl "Password applied" fn_script_log_pass "New ServerAdmin password applied" - sleep 0.5 } # Running functions diff --git a/lgsm/functions/command_update.sh b/lgsm/functions/command_update.sh index 9c366ae61..c3c289d97 100644 --- a/lgsm/functions/command_update.sh +++ b/lgsm/functions/command_update.sh @@ -9,7 +9,6 @@ local commandaction="Update" local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" fn_print_dots "" -sleep 0.2 check.sh logs.sh diff --git a/lgsm/functions/command_update_linuxgsm.sh b/lgsm/functions/command_update_linuxgsm.sh index c4c49aee5..5d8422936 100644 --- a/lgsm/functions/command_update_linuxgsm.sh +++ b/lgsm/functions/command_update_linuxgsm.sh @@ -9,7 +9,6 @@ local commandaction="Update LinuxGSM" local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" fn_print_dots "Updating LinuxGSM" -sleep 0.5 check.sh fn_script_log_info "Updating LinuxGSM" echo -en "\n" diff --git a/lgsm/functions/command_validate.sh b/lgsm/functions/command_validate.sh index c324b93b8..de999be25 100644 --- a/lgsm/functions/command_validate.sh +++ b/lgsm/functions/command_validate.sh @@ -9,15 +9,12 @@ local commandaction="Validate" local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" fn_validation(){ + fn_print_info "Validating files: SteamCMD" echo "" - echo -e " * Validating may overwrite some customised files." - echo -en " * https://developer.valvesoftware.com/wiki/SteamCMD#Validate" - sleep 3 - echo -en "\n" - + echo -e "* Validating may overwrite some customised files." + echo -e "* https://docs.linuxgsm.com/commands/validate" fn_script_log_info "Validating files: SteamCMD" - sleep 0.5 - + sleep 3 cd "${steamcmddir}" || exit # Detects if unbuffer command is available for 32 bit distributions only. info_distro.sh @@ -44,9 +41,7 @@ fn_validation(){ } fn_print_dots "Validating files:" -sleep 0.5 fn_print_dots "Validating files: SteamCMD" -sleep 0.5 check.sh check_status.sh if [ "${status}" != "0" ]; then diff --git a/lgsm/functions/command_wipe.sh b/lgsm/functions/command_wipe.sh index fdcbe424d..7a98c2155 100644 --- a/lgsm/functions/command_wipe.sh +++ b/lgsm/functions/command_wipe.sh @@ -48,138 +48,131 @@ fn_wipe_server_remove_files(){ if [ -n "$(find "${serveridentitydir}" -type f -name "proceduralmap.*.map")" ]; then currentaction="Removing map file(s): ${serveridentitydir}/proceduralmap.*.map" echo -en "Removing procedural map proceduralmap.*.map file(s)..." - sleep 0.5 + fn_sleep_time fn_script_log "${currentaction}" find "${serveridentitydir:?}" -type f -name "proceduralmap.*.map" -delete fn_wipe_exit_code - sleep 0.5 + fn_sleep_time else fn_print_information_nl "No procedural map file to remove" fn_script_log_info "No procedural map file to remove." - sleep 0.5 fi # Wipe procedural map save if [ -n "$(find "${serveridentitydir}" -type f -name "proceduralmap.*.sav")" ]; then currentaction="Removing procedural map save(s): ${serveridentitydir}/proceduralmap.*.sav" echo -en "Removing map saves proceduralmap.*.sav file(s)..." - sleep 0.5 + fn_sleep_time fn_script_log "${currentaction}" find "${serveridentitydir:?}" -type f -name "proceduralmap.*.sav" -delete fn_wipe_exit_code - sleep 0.5 + fn_sleep_time else fn_print_information_nl "No procedural map save to remove" fn_script_log_info "No procedural map save to remove." - sleep 0.5 fi # Wipe Barren map if [ -n "$(find "${serveridentitydir}" -type f -name "barren*.map")" ]; then currentaction="Removing map file(s): ${serveridentitydir}/barren*.map" echo -en "Removing barren map barren*.map file(s)..." - sleep 0.5 + fn_sleep_time fn_script_log "${currentaction}" find "${serveridentitydir:?}" -type f -name "barren*.map" -delete fn_wipe_exit_code - sleep 0.5 + fn_sleep_time else fn_print_information_nl "No barren map file to remove" fn_script_log_info "No barren map file to remove." - sleep 0.5 fi # Wipe barren map save if [ -n "$(find "${serveridentitydir}" -type f -name "barren*.sav")" ]; then currentaction="Removing barren map save(s): ${serveridentitydir}/barren*.sav" echo -en "Removing barren map saves barren*.sav file(s)..." - sleep 0.5 + fn_sleep_time fn_script_log "${currentaction}" find "${serveridentitydir:?}" -type f -name "barren*.sav" -delete fn_wipe_exit_code - sleep 0.5 + fn_sleep_time else fn_print_information_nl "No barren map save to remove" fn_script_log_info "No barren map save to remove." - sleep 0.5 fi # Wipe user dir, might be a legacy thing, maybe to be removed if [ -d "${serveridentitydir}/user" ]; then currentaction="Removing user directory: ${serveridentitydir}/user" echo -en "Removing user directory..." - sleep 0.5 + fn_sleep_time fn_script_log "${currentaction}" rm -rf "${serveridentitydir:?}/user" fn_wipe_exit_code - sleep 0.5 + fn_sleep_time # We do not print additional information if there is nothing to remove since this might be obsolete fi # Wipe storage dir, might be a legacy thing, maybe to be removed if [ -d "${serveridentitydir}/storage" ]; then currentaction="Removing storage directory: ${serveridentitydir}/storage" echo -en "Removing storage directory..." - sleep 0.5 + fn_sleep_time fn_script_log "${currentaction}" rm -rf "${serveridentitydir:?}/storage" fn_wipe_exit_code - sleep 0.5 + fn_sleep_time # We do not print additional information if there is nothing to remove since this might be obsolete fi # Wipe sv.files if [ -n "$(find "${serveridentitydir}" -type f -name "sv.files.*.db")" ]; then currentaction="Removing server misc files: ${serveridentitydir}/sv.files.*.db" echo -en "Removing server misc srv.files*.db file(s)..." - sleep 0.5 + fn_sleep_time fn_script_log "${currentaction}" find "${serveridentitydir:?}" -type f -name "sv.files.*.d" -delete fn_wipe_exit_code - sleep 0.5 + fn_sleep_time # No further information if not found because it should I could not get this file showing up fi # Wipe player death files if [ -n "$(find "${serveridentitydir}" -type f -name "player.deaths.*.db")" ]; then currentaction="Removing player death files: ${serveridentitydir}/player.deaths.*.db" echo -en "Removing player deaths player.deaths.*.db file(s)..." - sleep 0.5 + fn_sleep_time fn_script_log "${currentaction}" find "${serveridentitydir:?}" -type f -name "player.deaths.*.db" -delete fn_wipe_exit_code - sleep 0.5 + fn_sleep_time else fn_print_information_nl "No player death to remove" fn_script_log_info "No player death to remove." - sleep 0.5 fi # Wipe blueprints only if wipeall command was used if [ "${wipeall}" == "1" ]; then if [ -n "$(find "${serveridentitydir}" -type f -name "player.blueprints.*.db")" ]; then currentaction="Removing blueprint file(s): ${serveridentitydir}/player.blueprints.*.db" echo -en "Removing blueprints player.blueprints.*.db file(s)..." - sleep 0.5 + fn_sleep_time fn_script_log "${currentaction}" find "${serveridentitydir:?}" -type f -name "player.blueprints.*.db" -delete fn_wipe_exit_code - sleep 0.5 + fn_sleep_time else fn_print_information_nl "No blueprint file to remove" fn_script_log_info "No blueprint file to remove." - sleep 0.5 fi elif [ -n "$(find "${serveridentitydir}" -type f -name "player.blueprints.*.db")" ]; then fn_print_information_nl "Keeping blueprints" fn_script_log_info "Keeping blueprints." - sleep 0.5 else fn_print_information_nl "No blueprints found" fn_script_log_info "No blueprints found." - sleep 0.5 + fn_sleep_time fi # Wipe some logs that might be there if [ -n "$(find "${serveridentitydir}" -type f -name "Log.*.txt")" ]; then currentaction="Removing log files: ${serveridentitydir}/Log.*.txt" echo -en "Removing Log files..." - sleep 0.5 + fn_sleep_time fn_script_log "${currentaction}" find "${serveridentitydir:?}" -type f -name "Log.*.txt" -delete fn_wipe_exit_code - sleep 0.5 + fn_sleep_time # We do not print additional information if there are no logs to remove fi # You can add an "elif" here to add another game or engine @@ -195,12 +188,11 @@ if [ "${shortname}" == "rust" ]; then echo Exiting; core_exit.sh fi fn_script_log_info "User selects to erase any user, storage, log and map data from ${serveridentitydir}" - sleep 0.5 + fn_sleep_time fn_wipe_server_process else fn_print_information_nl "No data to wipe was found" fn_script_log_info "No data to wipe was found." - sleep 0.5 core_exit.sh fi # You can add an "elif" here to add another game or engine @@ -208,7 +200,6 @@ else # Game not listed fn_print_information_nl "Wipe is not available for this game" fn_script_log_info "Wipe is not available for this game." - sleep 0.5 core_exit.sh fi diff --git a/lgsm/functions/core_dl.sh b/lgsm/functions/core_dl.sh index 3018dcf13..910e1dec8 100644 --- a/lgsm/functions/core_dl.sh +++ b/lgsm/functions/core_dl.sh @@ -41,7 +41,7 @@ fn_dl_md5(){ # Runs MD5 Check if available. if [ "${md5}" != "0" ]&&[ "${md5}" != "nomd5" ]; then echo -en "verifying ${local_filename} with MD5..." - sleep 0.5 + fn_sleep_time local md5sumcmd=$(md5sum "${local_filedir}/${local_filename}"|awk '{print $1;}') if [ "${md5sumcmd}" != "${md5}" ]; then fn_print_fail_eol_nl @@ -104,7 +104,7 @@ fn_fetch_trap(){ echo -en "downloading ${local_filename}..." fn_print_canceled_eol_nl fn_script_log_info "Downloading ${local_filename}...CANCELED" - sleep 0.5 + fn_sleep_time rm -f "${local_filedir}/${local_filename}" echo -en "downloading ${local_filename}..." fn_print_removed_eol_nl @@ -131,7 +131,7 @@ fn_fetch_file(){ # Larger files show a progress bar. if [ "${local_filename##*.}" == "bz2" ]||[ "${local_filename##*.}" == "gz" ]||[ "${local_filename##*.}" == "zip" ]||[ "${local_filename##*.}" == "jar" ]||[ "${local_filename##*.}" == "xz" ]; then echo -en "downloading ${local_filename}..." - sleep 0.5 + fn_sleep_time echo -en "\033[1K" curlcmd=$(${curlpath} --progress-bar --fail -L -o "${local_filedir}/${local_filename}" "${remote_fileurl}") echo -en "downloading ${local_filename}..." diff --git a/lgsm/functions/core_messages.sh b/lgsm/functions/core_messages.sh index 74ae8cf5d..e28e65765 100644 --- a/lgsm/functions/core_messages.sh +++ b/lgsm/functions/core_messages.sh @@ -28,6 +28,12 @@ fn_ansi_loader(){ creeol="\r\033[K" } +fn_sleep_time(){ + if [ "${sleeptime}" != "0" ]||[ "${travistest}" != "1" ]; then + sleep "${sleeptime}" + fi +} + # Log display ######################## ## Feb 28 14:56:58 ut99-server: Monitor: @@ -110,6 +116,7 @@ fn_print_dots(){ else echo -en "${creeol}[ .... ] $@" fi + fn_sleep_time } fn_print_dots_nl(){ @@ -118,7 +125,7 @@ fn_print_dots_nl(){ else echo -e "${creeol}[ .... ] $@" fi - sleep 0.5 + fn_sleep_time echo -en "\n" } @@ -129,6 +136,7 @@ fn_print_ok(){ else echo -en "${creeol}[${green} OK ${default}] $@" fi + fn_sleep_time } fn_print_ok_nl(){ @@ -137,7 +145,7 @@ fn_print_ok_nl(){ else echo -en "${creeol}[${green} OK ${default}] $@" fi - sleep 0.5 + fn_sleep_time echo -en "\n" } @@ -148,6 +156,7 @@ fn_print_fail(){ else echo -en "${creeol}[${red} FAIL ${default}] $@" fi + fn_sleep_time } fn_print_fail_nl(){ @@ -156,7 +165,7 @@ fn_print_fail_nl(){ else echo -en "${creeol}[${red} FAIL ${default}] $@" fi - sleep 0.5 + fn_sleep_time echo -en "\n" } @@ -167,6 +176,7 @@ fn_print_error(){ else echo -en "${creeol}[${red}ERROR ${default}] $@" fi + fn_sleep_time } fn_print_error_nl(){ @@ -175,7 +185,7 @@ fn_print_error_nl(){ else echo -en "${creeol}[${red}ERROR ${default}] $@" fi - sleep 0.5 + fn_sleep_time echo -en "\n" } @@ -186,6 +196,7 @@ fn_print_warn(){ else echo -en "${creeol}[${yellow} WARN ${default}] $@" fi + fn_sleep_time } fn_print_warn_nl(){ @@ -194,7 +205,7 @@ fn_print_warn_nl(){ else echo -en "${creeol}[${yellow} WARN ${default}] $@" fi - sleep 0.5 + fn_sleep_time echo -en "\n" } @@ -205,6 +216,7 @@ fn_print_info(){ else echo -en "${creeol}[${cyan} INFO ${default}] $@" fi + fn_sleep_time } fn_print_info_nl(){ @@ -213,7 +225,7 @@ fn_print_info_nl(){ else echo -en "${creeol}[${cyan} INFO ${default}] $@" fi - sleep 0.5 + fn_sleep_time echo -en "\n" } @@ -232,46 +244,56 @@ fn_print_header(){ # Complete! fn_print_complete(){ echo -en "${green}Complete!${default} $@" + fn_sleep_time } fn_print_complete_nl(){ echo -e "${green}Complete!${default} $@" + fn_sleep_time } # Failure! fn_print_failure(){ echo -en "${red}Failure!${default} $@" + fn_sleep_time } fn_print_failure_nl(){ echo -e "${red}Failure!${default} $@" + fn_sleep_time } # Error! fn_print_error2(){ echo -en "${red}Error!${default} $@" + fn_sleep_time } fn_print_error2_nl(){ echo -e "${red}Error!${default} $@" + fn_sleep_time } # Warning! fn_print_warning(){ echo -en "${yellow}Warning!${default} $@" + fn_sleep_time } fn_print_warning_nl(){ echo -e "${yellow}Warning!${default} $@" + fn_sleep_time } # Information! fn_print_information(){ echo -en "${cyan}Information!${default} $@" + fn_sleep_time } fn_print_information_nl(){ echo -e "${cyan}Information!${default} $@" + fn_sleep_time } # Y/N Prompt diff --git a/lgsm/functions/fix.sh b/lgsm/functions/fix.sh index da9c362e4..9fddc3189 100644 --- a/lgsm/functions/fix.sh +++ b/lgsm/functions/fix.sh @@ -11,18 +11,14 @@ local commandaction="Fix" # Messages that are displayed for some fixes fn_fix_msg_start(){ fn_print_dots "Applying ${fixname} fix: ${gamename}" - sleep 0.5 fn_print_info "Applying ${fixname} fix: ${gamename}" fn_script_log_info "Applying ${fixname} fix: ${gamename}" - sleep 0.5 } fn_fix_msg_start_nl(){ fn_print_dots "Applying ${fixname} fix: ${gamename}" - sleep 0.5 fn_print_info "Applying ${fixname} fix: ${gamename}" fn_script_log_info "Applying ${fixname} fix: ${gamename}" - sleep 0.5 } fn_fix_msg_end(){ @@ -82,7 +78,7 @@ if [ "${function_selfname}" == "command_install.sh" ]; then echo "" echo "Applying Post-Install Fixes" echo "=================================" - sleep 0.5 + fn_sleep_time if [ "${shortname}" == "kf" ]; then fix_kf.sh elif [ "${shortname}" == "kf2" ]; then diff --git a/lgsm/functions/fix_kf.sh b/lgsm/functions/fix_kf.sh index dbb0c78c1..e9f5f3860 100644 --- a/lgsm/functions/fix_kf.sh +++ b/lgsm/functions/fix_kf.sh @@ -12,15 +12,15 @@ echo "Applying WebAdmin ROOst.css fix." echo "http://forums.tripwireinteractive.com/showpost.php?p=585435&postcount=13" sed -i 's/none}/none;/g' "${serverfiles}/Web/ServerAdmin/ROOst.css" sed -i 's/underline}/underline;/g' "${serverfiles}/Web/ServerAdmin/ROOst.css" -sleep 0.5 +fn_sleep_time echo "Applying WebAdmin CharSet fix." echo "http://forums.tripwireinteractive.com/showpost.php?p=442340&postcount=1" sed -i 's/CharSet="iso-8859-1"/CharSet="utf-8"/g' "${systemdir}/UWeb.int" -sleep 0.5 +fn_sleep_time echo "applying server name fix." -sleep 0.5 +fn_sleep_time echo "forcing server restart..." -sleep 0.5 +fn_sleep_time exitbypass=1 command_start.sh sleep 5 diff --git a/lgsm/functions/fix_kf2.sh b/lgsm/functions/fix_kf2.sh index 3e3e23080..e8f3440f0 100644 --- a/lgsm/functions/fix_kf2.sh +++ b/lgsm/functions/fix_kf2.sh @@ -13,9 +13,9 @@ parms="\"${defaultmap}?Game=KFGameContent.KFGameInfo_VersusSurvival\"" } fn_print_information "starting ${gamename} server to generate configs." -sleep 1 +fn_sleep_time exitbypass=1 command_start.sh sleep 10 exitbypass=1 -command_stop.sh \ No newline at end of file +command_stop.sh diff --git a/lgsm/functions/fix_mta.sh b/lgsm/functions/fix_mta.sh index e8943f5e1..4eb4ff900 100644 --- a/lgsm/functions/fix_mta.sh +++ b/lgsm/functions/fix_mta.sh @@ -11,7 +11,7 @@ local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" if [ ! -f "${lgsmdir}/lib/libmysqlclient.so.16" ]; then fixname="libmysqlclient16" fn_fix_msg_start_nl - sleep 0.5 + fn_sleep_time fn_fetch_file "https://nightly.mtasa.com/files/modules/64/libmysqlclient.so.16" "${lgsmdir}/lib" "libmysqlclient.so.16" "chmodx" "norun" "noforce" "6c188e0f8fb5d7a29f4bc413b9fed6c2" fn_fix_msg_end fi diff --git a/lgsm/functions/fix_ro.sh b/lgsm/functions/fix_ro.sh index b96ae582e..1ded9824b 100644 --- a/lgsm/functions/fix_ro.sh +++ b/lgsm/functions/fix_ro.sh @@ -12,18 +12,18 @@ echo "Applying WebAdmin ROOst.css fix." echo "http://forums.tripwireinteractive.com/showpost.php?p=585435&postcount=13" sed -i 's/none}/none;/g' "${serverfiles}/Web/ServerAdmin/ROOst.css" sed -i 's/underline}/underline;/g' "${serverfiles}/Web/ServerAdmin/ROOst.css" -sleep 0.5 +fn_sleep_time echo "Applying WebAdmin CharSet fix." echo "http://forums.tripwireinteractive.com/showpost.php?p=442340&postcount=1" sed -i 's/CharSet="iso-8859-1"/CharSet="utf-8"/g' "${systemdir}/uweb.int" -sleep 0.5 +fn_sleep_time echo "Applying Steam AppID fix." sed -i 's/1210/1200/g' "${systemdir}/steam_appid.txt" -sleep 0.5 +fn_sleep_time echo "applying server name fix." -sleep 0.5 +fn_sleep_time echo "forcing server restart..." -sleep 0.5 +fn_sleep_time exitbypass=1 command_start.sh sleep 5 diff --git a/lgsm/functions/fix_ut.sh b/lgsm/functions/fix_ut.sh index aaaad40cb..7e9b7dc97 100644 --- a/lgsm/functions/fix_ut.sh +++ b/lgsm/functions/fix_ut.sh @@ -11,4 +11,4 @@ local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" #Set Binary Executable echo "chmod +x ${executabledir}/${executable}" chmod +x "${executabledir}/${executable}" -sleep 0.5 \ No newline at end of file +fn_sleep_time \ No newline at end of file diff --git a/lgsm/functions/fix_ut2k4.sh b/lgsm/functions/fix_ut2k4.sh index b29b312c3..3789909b3 100644 --- a/lgsm/functions/fix_ut2k4.sh +++ b/lgsm/functions/fix_ut2k4.sh @@ -12,15 +12,15 @@ echo "applying WebAdmin ut2003.css fix." echo "http://forums.tripwireinteractive.com/showpost.php?p=585435&postcount=13" sed -i 's/none}/none;/g' "${serverfiles}/Web/ServerAdmin/ut2003.css" sed -i 's/underline}/underline;/g' "${serverfiles}/Web/ServerAdmin/ut2003.css" -sleep 0.5 +fn_sleep_time echo "applying WebAdmin CharSet fix." echo "http://forums.tripwireinteractive.com/showpost.php?p=442340&postcount=1" sed -i 's/CharSet="iso-8859-1"/CharSet="utf-8"/g' "${systemdir}/UWeb.int" -sleep 0.5 +fn_sleep_time echo "applying server name fix." -sleep 0.5 +fn_sleep_time echo "forcing server restart." -sleep 0.5 +fn_sleep_time exitbypass=1 command_start.sh sleep 5 diff --git a/lgsm/functions/fix_ut3.sh b/lgsm/functions/fix_ut3.sh index fa95052ac..53bde310f 100644 --- a/lgsm/functions/fix_ut3.sh +++ b/lgsm/functions/fix_ut3.sh @@ -13,9 +13,9 @@ parms="server VCTF-Suspense?Game=UTGameContent.UTVehicleCTFGame_Content?bIsDedic } fn_print_information "starting ${gamename} server to generate configs." -sleep 1 +fn_sleep_time exitbypass=1 command_start.sh sleep 10 exitbypass=1 -command_stop.sh \ No newline at end of file +command_stop.sh diff --git a/lgsm/functions/install_config.sh b/lgsm/functions/install_config.sh index f9c7e1cb2..997624f73 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -23,7 +23,7 @@ fn_fetch_default_config(){ echo "Downloading ${gamename} Configs" echo "=================================" echo "default configs from https://github.com/GameServerManagers/Game-Server-Configs" - sleep 0.5 + fn_sleep_time mkdir -p "${lgsmdir}/config-default/config-game" githuburl="https://raw.githubusercontent.com/GameServerManagers/Game-Server-Configs/master" for config in "${array_configs[@]}"; do @@ -50,14 +50,14 @@ fn_default_config_remote(){ cp -nv "${lgsmdir}/config-default/config-game/${config}" "${servercfgdir}/${config}" fi done - sleep 0.5 + fn_sleep_time } # Copys local default config to server config location fn_default_config_local(){ echo "copying ${servercfgdefault} config file." cp -nv "${servercfgfullpathdefault}" "${servercfgfullpath}" - sleep 0.5 + fn_sleep_time } # Changes some variables within the default configs @@ -70,7 +70,7 @@ fn_set_config_vars(){ rconpass="admin${random}" echo "changing hostname." fn_script_log_info "changing hostname." - sleep 0.5 + fn_sleep_time # prevents var from being overwritten with the servername if grep -q "SERVERNAME=SERVERNAME" "${lgsmdir}/config-default/config-game/${config}" 2>/dev/null; then sed -i "s/SERVERNAME=SERVERNAME/SERVERNAME=${servername}/g" "${servercfgfullpath}" @@ -86,11 +86,11 @@ fn_set_config_vars(){ else sed -i "s/ADMINPASSWORD/${rconpass}/g" "${servercfgfullpath}" fi - sleep 0.5 + fn_sleep_time else fn_script_log_warn "Config file not found, cannot alter it." echo "Config file not found, cannot alter it." - sleep 0.5 + fn_sleep_time fi } @@ -101,16 +101,16 @@ fn_set_dst_config_vars(){ echo "changing server name." fn_script_log_info "changing server name." sed -i "s/SERVERNAME/LinuxGSM/g" "${clustercfgfullpath}" - sleep 0.5 + fn_sleep_time echo "changing shard mode." fn_script_log_info "changing shard mode." sed -i "s/USESHARDING/${sharding}/g" "${clustercfgfullpath}" - sleep 0.5 + fn_sleep_time echo "randomizing cluster key." fn_script_log_info "randomizing cluster key." randomkey=$(tr -dc A-Za-z0-9_ < /dev/urandom | head -c 8 | xargs) sed -i "s/CLUSTERKEY/${randomkey}/g" "${clustercfgfullpath}" - sleep 0.5 + fn_sleep_time else echo "${clustercfg} is already configured." fn_script_log_info "${clustercfg} is already configured." @@ -128,11 +128,11 @@ fn_set_dst_config_vars(){ echo "changing shard name." fn_script_log_info "changing shard name." sed -i "s/SHARDNAME/${shard}/g" "${servercfgfullpath}" - sleep 0.5 + fn_sleep_time echo "changing master setting." fn_script_log_info "changing master setting." sed -i "s/ISMASTER/${master}/g" "${servercfgfullpath}" - sleep 0.5 + fn_sleep_time ## worldgenoverride.lua if [ "${cave}" == "true" ]; then @@ -140,7 +140,7 @@ fn_set_dst_config_vars(){ fn_script_log_info "defining ${shard} as cave in ${servercfgdir}/worldgenoverride.lua." echo 'return { override_enabled = true, preset = "DST_CAVE", }' > "${servercfgdir}/worldgenoverride.lua" fi - sleep 0.5 + fn_sleep_time echo "" } diff --git a/lgsm/functions/install_dst_token.sh b/lgsm/functions/install_dst_token.sh index 11a4c3679..616a6469b 100644 --- a/lgsm/functions/install_dst_token.sh +++ b/lgsm/functions/install_dst_token.sh @@ -11,7 +11,7 @@ local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" echo "" echo "Enter ${gamename} Cluster Token" echo "=================================" -sleep 0.5 +fn_sleep_time echo "A cluster token is required to run this server!" echo "Follow the instructions in this link to obtain this key:" echo "https://linuxgsm.com/dst-auth-token" diff --git a/lgsm/functions/install_eula.sh b/lgsm/functions/install_eula.sh index cc676f0dc..fca4838af 100644 --- a/lgsm/functions/install_eula.sh +++ b/lgsm/functions/install_eula.sh @@ -15,7 +15,7 @@ fi echo "" echo "Accept ${gamename} EULA" echo "=================================" -sleep 0.5 +fn_sleep_time echo "You are required to accept the EULA:" echo "${eulaurl}" echo "" diff --git a/lgsm/functions/install_factorio_save.sh b/lgsm/functions/install_factorio_save.sh index 3b243c9d4..804ef88e7 100644 --- a/lgsm/functions/install_factorio_save.sh +++ b/lgsm/functions/install_factorio_save.sh @@ -10,6 +10,6 @@ local commandaction="Install" echo "" echo "Creating initial Factorio savefile" echo "=================================" -sleep 0.5 +fn_sleep_time check_glibc.sh "${executabledir}"/factorio --create "${serverfiles}/save1" diff --git a/lgsm/functions/install_gslt.sh b/lgsm/functions/install_gslt.sh index 2c8c0e9f3..87fccae70 100644 --- a/lgsm/functions/install_gslt.sh +++ b/lgsm/functions/install_gslt.sh @@ -11,7 +11,7 @@ local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" echo "" echo "Game Server Login Token" echo "=================================" -sleep 0.5 +fn_sleep_time if [ "${shortname}" == "csgo" ]||[ "${shortname}" == "css" ]||[ "${shortname}" == "nmrih" ]||[ "${shortname}" == "bs" ]; then echo "GSLT is required to run a public ${gamename} server" fn_script_log_info "GSLT is required to run a public ${gamename} server" @@ -37,7 +37,7 @@ if [ -z "${autoinstall}" ]; then fi fi fi -sleep 0.5 +fn_sleep_time if [ "${shortname}" == "tu" ]; then echo "The GSLT can be changed by editing ${servercfgdir}/${servercfg}." fn_script_log_info "The GSLT can be changed by editing ${servercfgdir}/${servercfg}." diff --git a/lgsm/functions/install_logs.sh b/lgsm/functions/install_logs.sh index bc8184839..d02bb8e35 100644 --- a/lgsm/functions/install_logs.sh +++ b/lgsm/functions/install_logs.sh @@ -13,7 +13,7 @@ if [ "${checklogs}" != "1" ]; then echo "Creating log directories" echo "=================================" fi -sleep 0.5 +fn_sleep_time # Create LinuxGSM logs echo -en "installing log dir: ${logdir}..." mkdir -p "${logdir}" @@ -102,5 +102,5 @@ if [ -d "${rootdir}/Steam/logs" ]; then fi fi fi -sleep 0.5 +fn_sleep_time fn_script_log_info "Logs installed" diff --git a/lgsm/functions/install_server_dir.sh b/lgsm/functions/install_server_dir.sh index abb8f6fb0..18255ebd8 100644 --- a/lgsm/functions/install_server_dir.sh +++ b/lgsm/functions/install_server_dir.sh @@ -11,7 +11,7 @@ local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" echo "" echo "Server Directory" echo "=================================" -sleep 0.5 +fn_sleep_time if [ -d "${serverfiles}" ]; then fn_print_warning_nl "A server is already installed here." fi diff --git a/lgsm/functions/install_server_files.sh b/lgsm/functions/install_server_files.sh index 67b4af9fe..e921e9c15 100644 --- a/lgsm/functions/install_server_files.sh +++ b/lgsm/functions/install_server_files.sh @@ -131,7 +131,7 @@ fn_install_server_files_steamcmd(){ echo "" echo "Installing ${gamename} Server" echo "=================================" -sleep 0.5 +fn_sleep_time if [ -n "${appid}" ]; then fn_install_server_files_steamcmd diff --git a/lgsm/functions/install_squad_license.sh b/lgsm/functions/install_squad_license.sh index 3b0711309..f9cf40835 100644 --- a/lgsm/functions/install_squad_license.sh +++ b/lgsm/functions/install_squad_license.sh @@ -11,7 +11,7 @@ local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" echo "" echo "Squad Server License" echo "=================================" -sleep 0.5 +fn_sleep_time echo "Server license is an optional feature for ${gamename} server" fn_script_log_info "Server license is an optional feature for ${gamename} server" @@ -20,7 +20,7 @@ echo "http://forums.joinsquad.com/topic/16519-server-licensing-general-info/" fn_script_log_info "Get more info and a server license here:" fn_script_log_info "http://forums.joinsquad.com/topic/16519-server-licensing-general-info/" echo "" -sleep 0.5 +fn_sleep_time echo "The Squad server license can be changed by editing ${servercfgdir}/License.cfg." fn_script_log_info "The Squad server license can be changed by editing ${selfname}." echo "" \ No newline at end of file diff --git a/lgsm/functions/install_steamcmd.sh b/lgsm/functions/install_steamcmd.sh index 10d095423..4b24c4274 100644 --- a/lgsm/functions/install_steamcmd.sh +++ b/lgsm/functions/install_steamcmd.sh @@ -10,5 +10,5 @@ local commandaction="Install" echo "" echo "Installing SteamCMD" echo "=================================" -sleep 0.5 +fn_sleep_time check_steamcmd.sh diff --git a/lgsm/functions/install_ts3db.sh b/lgsm/functions/install_ts3db.sh index 77dea1bae..264f2597f 100644 --- a/lgsm/functions/install_ts3db.sh +++ b/lgsm/functions/install_ts3db.sh @@ -27,7 +27,7 @@ fn_install_ts3db_mariadb(){ echo "" echo "Configure ${gamename} Server for MariaDB" echo "=================================" - sleep 0.5 + fn_sleep_time read -rp "Enter MariaDB hostname: " mariahostname read -rp "Enter MariaDB port: " mariaport read -rp "Enter MariaDB username: " mariausername @@ -48,13 +48,13 @@ fn_install_ts3db_mariadb(){ sed -i "s/dbpluginparameter=/dbpluginparameter=ts3db_mariadb.ini/g" "${servercfgfullpath}" sed -i "s/dbsqlcreatepath=create_sqlite\//dbsqlcreatepath=create_mariadb\//g" "${servercfgfullpath}" echo "updating ts3db_mariadb.ini." - sleep 0.5 + fn_sleep_time } echo "" echo "Select Database" echo "=================================" -sleep 0.5 +fn_sleep_time if [ -z "${autoinstall}" ]; then if fn_prompt_yn "Do you want to use MariaDB instead of sqlite? (MariaDB must be pre-configured)" N; then fn_install_ts3db_mariadb @@ -69,9 +69,8 @@ install_eula.sh echo "" echo "Getting privilege key" echo "=================================" -sleep 0.5 +fn_sleep_time fn_print_information_nl "Save these details for later." -sleep 0.5 cd "${executabledir}" || exit ${executable} start inifile=ts3-server.ini sleep 5 diff --git a/lgsm/functions/install_ut2k4_key.sh b/lgsm/functions/install_ut2k4_key.sh index f1e840462..0f0fe6da5 100644 --- a/lgsm/functions/install_ut2k4_key.sh +++ b/lgsm/functions/install_ut2k4_key.sh @@ -11,7 +11,7 @@ local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" echo "" echo "Enter ${gamename} CD Key" echo "=================================" -sleep 0.5 +fn_sleep_time echo "To get your server listed on the Master Server list" echo "you must get a free CD key. Get a key here:" echo "https://forums.unrealtournament.com/utserver/cdkey.php?2004" diff --git a/lgsm/functions/logs.sh b/lgsm/functions/logs.sh index 69dbc7deb..803f9e243 100644 --- a/lgsm/functions/logs.sh +++ b/lgsm/functions/logs.sh @@ -22,7 +22,7 @@ if [ "${status}" != "0" ]&&[ "${function_selfname}" == "command_start.sh" ]&&[ - fn_print_info "Moving game logs to ${gamelogdir}" fn_script_log_info "Moving game logs to ${gamelogdir}" echo -en "\n" - sleep 0.5 + fn_sleep_time mv "${systemdir}"/gamelog*.log "${gamelogdir}" fi fi @@ -40,7 +40,7 @@ if [ $(find "${lgsmlogdir}"/ -type f -mtime +"${logdays}" | wc -l) -ne "0" ]; th legacyserverlogdir="${logdir}/server" # Setting up counting variables scriptcount="0" ; consolecount="0" ; gamecount="0" ; srcdscount="0" ; smcount="0" ; ulxcount="0" ; darkrpcount="0" ; legacycount="0" - sleep 0.5 + fn_sleep_time fn_print_ok_nl "Starting" fn_print_info_nl "Removing logs older than ${logdays} days" fn_script_log_info "Removing logs older than ${logdays} days" diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index cf2178b3c..c65727738 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -38,7 +38,7 @@ fn_mod_lowercase(){ if [ "${modlowercase}" == "LowercaseOn" ]; then echo -en "converting ${modprettyname} files to lowercase..." - sleep 0.5 + fn_sleep_time fn_script_log_info "Converting ${modprettyname} files to lowercase" fileswc=$(find "${extractdir}" -depth | wc -l) echo -en "\r" @@ -61,14 +61,14 @@ fn_mod_lowercase(){ else fn_print_ok_eol_nl fi - sleep 0.5 + fn_sleep_time fi } # Create ${modcommand}-files.txt containing the full extracted file/directory list fn_mod_create_filelist(){ echo -en "building ${modcommand}-files.txt..." - sleep 0.5 + fn_sleep_time # ${modsdir}/${modcommand}-files.txt find "${extractdir}" -mindepth 1 -printf '%P\n' > "${modsdir}/${modcommand}-files.txt" local exitcode=$? @@ -84,13 +84,13 @@ fn_mod_create_filelist(){ if [ -f "${modsdir}/.removedfiles.tmp" ]; then cat "${modsdir}/.removedfiles.tmp" >> "${modsdir}/${modcommand}-files.txt" fi - sleep 0.5 + fn_sleep_time } # Copy the mod into serverfiles fn_mod_copy_destination(){ echo -en "copying ${modprettyname} to ${modinstalldir}..." - sleep 0.5 + fn_sleep_time cp -Rf "${extractdir}/." "${modinstalldir}/" local exitcode=$? if [ ${exitcode} -ne 0 ]; then @@ -116,7 +116,7 @@ fn_mod_tidy_files_list(){ fn_check_mod_files_list # Output to the user echo -en "tidy up ${modcommand}-files.txt..." - sleep 0.5 + fn_sleep_time fn_script_log_info "Tidy up ${modcommand}-files.txt" # Lines/files to remove from file list (end with ";" separator) removefromlist="cfg;addons;RustDedicated_Data;RustDedicated_Data\/Managed;RustDedicated_Data\/Managed\/x86;RustDedicated_Data\/Managed\/x64;" @@ -354,7 +354,7 @@ fn_create_mods_dir(){ fn_print_ok_eol_nl fn_script_log_pass "Creating mod download dir ${modsdir}" fi - sleep 0.5 + fn_sleep_time fi # Create mod install directory if [ ! -d "${modinstalldir}" ]; then @@ -369,7 +369,7 @@ fn_create_mods_dir(){ fn_print_ok_eol_nl fn_script_log_pass "Creating mod install directory ${modinstalldir}" fi - sleep 0.5 + fn_sleep_time fi # Create lgsm/data/${modsinstalledlist} diff --git a/lgsm/functions/update_factorio.sh b/lgsm/functions/update_factorio.sh index 6efd56024..c6d27ee65 100644 --- a/lgsm/functions/update_factorio.sh +++ b/lgsm/functions/update_factorio.sh @@ -28,7 +28,6 @@ fn_update_factorio_dl(){ fn_update_factorio_localbuild(){ # Gets local build info. fn_print_dots "Checking for update: ${remotelocation}: checking local build" - sleep 0.5 # Uses executable to find local build. cd "${executabledir}" || exit if [ -f "${executable}" ]; then @@ -40,7 +39,6 @@ fn_update_factorio_localbuild(){ fn_print_error "Checking for update: ${remotelocation}: checking local build" fn_script_log_error "Checking local build" fi - sleep 0.5 } fn_update_factorio_remotebuild(){ @@ -48,7 +46,6 @@ fn_update_factorio_remotebuild(){ remotebuild=$(${curlpath} -s "https://factorio.com/get-download/${downloadbranch}/headless/${factorioarch}" | grep -o '[0-9]\.[0-9]\{1,\}\.[0-9]\{1,\}' | head -1) if [ "${installer}" != "1" ]; then fn_print_dots "Checking for update: ${remotelocation}: checking remote build" - sleep 0.5 # Checks if remotebuild variable has been set. if [ -z "${remotebuild}" ]||[ "${remotebuild}" == "null" ]; then fn_print_fail "Checking for update: ${remotelocation}: checking remote build" @@ -57,7 +54,6 @@ fn_update_factorio_remotebuild(){ else fn_print_ok "Checking for update: ${remotelocation}: checking remote build" fn_script_log_pass "Checking remote build" - sleep 0.5 fi else # Checks if remotebuild variable has been set. @@ -66,18 +62,16 @@ fn_update_factorio_remotebuild(){ fn_script_log_fatal "Unable to get remote build" core_exit.sh fi - fi + fi } fn_update_factorio_compare(){ fn_print_dots "Checking for update: ${remotelocation}" - sleep 0.5 # Removes dots so if statement can compare version numbers. localbuilddigit=$(echo "${localbuild}" | tr -cd '[:digit:]') remotebuilddigit=$(echo "${remotebuild}" | tr -cd '[:digit:]') if [ "${localbuilddigit}" -ne "${remotebuilddigit}" ]||[ "${forceupdate}" == "1" ]; then fn_print_ok_nl "Checking for update: ${remotelocation}" - sleep 0.5 echo -en "\n" echo -e "Update available" echo -e "* Local build: ${red}${localbuild} ${factorioarch}${default}" @@ -92,7 +86,7 @@ fn_update_factorio_compare(){ fn_script_log_info "Branch: ${branch}" fi fn_script_log_info "${localbuild} > ${remotebuild}" - sleep 0.5 + fn_sleep_time echo -en "\n" echo -en "applying update.\r" sleep 1 @@ -126,7 +120,6 @@ fn_update_factorio_compare(){ alert.sh else fn_print_ok_nl "Checking for update: ${remotelocation}" - sleep 0.5 echo -en "\n" echo -e "No update available" echo -e "* Local build: ${green}${localbuild} ${factorioarch}${default}" @@ -163,7 +156,6 @@ if [ "${installer}" == "1" ]; then else fn_print_dots "Checking for update: ${remotelocation}" fn_script_log_info "Checking for update: ${remotelocation}" - sleep 0.5 fn_update_factorio_localbuild fn_update_factorio_remotebuild fn_update_factorio_compare diff --git a/lgsm/functions/update_minecraft.sh b/lgsm/functions/update_minecraft.sh index 3cf19731a..8fa3ef40a 100644 --- a/lgsm/functions/update_minecraft.sh +++ b/lgsm/functions/update_minecraft.sh @@ -30,18 +30,14 @@ fn_update_minecraft_dl(){ fn_update_minecraft_localbuild(){ # Gets local build info. fn_print_dots "Checking for update: ${remotelocation}: checking local build" - sleep 0.5 # Uses log file to gather info. # Gives time for log file to generate. if [ ! -f "${serverfiles}/logs/latest.log" ]; then fn_print_error "Checking for update: ${remotelocation}: checking local build" - sleep 0.5 fn_print_error_nl "Checking for update: ${remotelocation}: checking local build: no log files" fn_script_log_error "No log file found" - sleep 0.5 fn_print_info_nl "Checking for update: ${remotelocation}: checking local build: forcing server restart" fn_script_log_info "Forcing server restart" - sleep 0.5 exitbypass=1 command_stop.sh exitbypass=1 @@ -61,7 +57,6 @@ fn_update_minecraft_localbuild(){ fn_print_error "Checking for update: ${remotelocation}: waiting for log file: missing log file" fn_script_log_error "Missing log file" fn_script_log_error "Set localbuild to 0" - sleep 0.5 fi totalseconds=$((totalseconds + 1)) @@ -99,7 +94,6 @@ fn_update_minecraft_localbuild(){ fn_print_ok "Checking for update: ${remotelocation}: checking local build" fn_script_log_pass "Checking local build" fi - sleep 0.5 } fn_update_minecraft_remotebuild(){ @@ -107,7 +101,6 @@ fn_update_minecraft_remotebuild(){ remotebuild=$(${curlpath} -s "https://launchermeta.${remotelocation}/mc/game/version_manifest.json" | jq -r '.latest.release') if [ "${installer}" != "1" ]; then fn_print_dots "Checking for update: ${remotelocation}: checking remote build" - sleep 0.5 # Checks if remotebuild variable has been set. if [ -z "${remotebuild}" ]||[ "${remotebuild}" == "null" ]; then fn_print_fail "Checking for update: ${remotelocation}: checking remote build" @@ -116,7 +109,6 @@ fn_update_minecraft_remotebuild(){ else fn_print_ok "Checking for update: ${remotelocation}: checking remote build" fn_script_log_pass "Checking remote build" - sleep 0.5 fi else # Checks if remotebuild variable has been set. @@ -131,12 +123,10 @@ fn_update_minecraft_remotebuild(){ fn_update_minecraft_compare(){ # Removes dots so if statement can compare version numbers. fn_print_dots "Checking for update: ${remotelocation}" - sleep 0.5 localbuilddigit=$(echo "${localbuild}" | tr -cd '[:digit:]') remotebuilddigit=$(echo "${remotebuild}" | tr -cd '[:digit:]') if [ "${localbuilddigit}" -ne "${remotebuilddigit}" ]||[ "${forceupdate}" == "1" ]; then fn_print_ok_nl "Checking for update: ${remotelocation}" - sleep 0.5 echo -en "\n" echo -e "Update available" echo -e "* Local build: ${red}${localbuild}${default}" @@ -145,7 +135,7 @@ fn_update_minecraft_compare(){ fn_script_log_info "Local build: ${localbuild}" fn_script_log_info "Remote build: ${remotebuild}" fn_script_log_info "${localbuild} > ${remotebuild}" - sleep 0.5 + fn_sleep_time echo -en "\n" echo -en "applying update.\r" sleep 1 @@ -179,7 +169,6 @@ fn_update_minecraft_compare(){ alert.sh else fn_print_ok_nl "Checking for update: ${remotelocation}" - sleep 0.5 echo -en "\n" echo -e "No update available" echo -e "* Local build: ${green}${localbuild}${default}" @@ -199,7 +188,6 @@ if [ "${installer}" == "1" ]; then else fn_print_dots "Checking for update: ${remotelocation}" fn_script_log_info "Checking for update: ${remotelocation}" - sleep 0.5 fn_update_minecraft_localbuild fn_update_minecraft_remotebuild fn_update_minecraft_compare diff --git a/lgsm/functions/update_mta.sh b/lgsm/functions/update_mta.sh index 90eb424f5..935ab474e 100644 --- a/lgsm/functions/update_mta.sh +++ b/lgsm/functions/update_mta.sh @@ -30,18 +30,14 @@ fn_update_mta_dl(){ fn_update_mta_localbuild(){ # Gets local build info. fn_print_dots "Checking for update: ${remotelocation}: checking local build" - sleep 0.5 # Uses log file to gather info. # Gives time for log file to generate. if [ ! -f "${serverfiles}/mods/deathmatch/logs/server.log" ]; then fn_print_error "Checking for update: ${remotelocation}: checking local build" - sleep 0.5 fn_print_error_nl "Checking for update: ${remotelocation}: checking local build: no log files" fn_script_log_error "No log file found" - sleep 0.5 fn_print_info_nl "Checking for update: ${remotelocation}: checking local build: forcing server restart" fn_script_log_info "Forcing server restart" - sleep 0.5 exitbypass=1 command_stop.sh exitbypass=1 @@ -61,7 +57,6 @@ fn_update_mta_localbuild(){ fn_print_error "Checking for update: ${remotelocation}: waiting for log file: missing log file" fn_script_log_error "Missing log file" fn_script_log_error "Set localbuild to 0" - sleep 0.5 fi totalseconds=$((totalseconds + 1)) @@ -100,7 +95,6 @@ fn_update_mta_localbuild(){ fn_print_ok "Checking for update: ${remotelocation}: checking local build" fn_script_log_pass "Checking local build" fi - sleep 0.5 } fn_update_mta_remotebuild(){ @@ -111,7 +105,6 @@ fn_update_mta_remotebuild(){ remotebuild="${majorversion}.${minorversion}.${maintenanceversion}" if [ "${installer}" != "1" ]; then fn_print_dots "Checking for update: ${remotelocation}: checking remote build" - sleep 0.5 # Checks if remotebuild variable has been set. if [ -z "${remotebuild}" ]||[ "${remotebuild}" == "null" ]; then fn_print_fail "Checking for update: ${remotelocation}: checking remote build" @@ -120,7 +113,6 @@ fn_update_mta_remotebuild(){ else fn_print_ok "Checking for update: ${remotelocation}: checking remote build" fn_script_log_pass "Checking remote build" - sleep 0.5 fi else # Checks if remotebuild variable has been set. @@ -135,7 +127,6 @@ fn_update_mta_remotebuild(){ fn_update_mta_compare(){ # Removes dots so if statement can compare version numbers. fn_print_dots "Checking for update: ${remotelocation}" - sleep 0.5 localbuilddigit=$(echo "${localbuild}" | tr -cd '[:digit:]') remotebuilddigit=$(echo "${remotebuild}" | tr -cd '[:digit:]') if [ "${localbuilddigit}" -ne "${remotebuilddigit}" ]||[ "${forceupdate}" == "1" ]; then @@ -146,7 +137,6 @@ fn_update_mta_compare(){ else mtaupdatestatus="available" fi - sleep 0.5 echo -en "\n" echo -e "Update ${mtaupdatestatus}:" echo -e "* Local build: ${red}${localbuild}${default}" @@ -155,7 +145,7 @@ fn_update_mta_compare(){ fn_script_log_info "Local build: ${localbuild}" fn_script_log_info "Remote build: ${remotebuild}" fn_script_log_info "${localbuild} > ${remotebuild}" - sleep 0.5 + fn_sleep_time echo -en "\n" echo -en "applying update.\r" sleep 1 @@ -189,7 +179,6 @@ fn_update_mta_compare(){ alert.sh else fn_print_ok_nl "Checking for update: ${remotelocation}" - sleep 0.5 echo -en "\n" echo -e "No update available" echo -e "* Local build: ${green}${localbuild}${default}" @@ -209,7 +198,6 @@ if [ "${installer}" == "1" ]; then else fn_print_dots "Checking for update: ${remotelocation}" fn_script_log_info "Checking for update: ${remotelocation}" - sleep 0.5 fn_update_mta_localbuild fn_update_mta_remotebuild fn_update_mta_compare diff --git a/lgsm/functions/update_mumble.sh b/lgsm/functions/update_mumble.sh index ba98449e2..eb0bdcda3 100644 --- a/lgsm/functions/update_mumble.sh +++ b/lgsm/functions/update_mumble.sh @@ -28,7 +28,6 @@ fn_update_mumble_dl(){ fn_update_mumble_localbuild(){ # Gets local build info. fn_print_dots "Checking for update: ${remotelocation}: checking local build" - sleep 0.5 # Uses executable to find local build. cd "${executabledir}" || exit if [ -f "${executable}" ]; then @@ -40,7 +39,6 @@ fn_update_mumble_localbuild(){ fn_print_error "Checking for update: ${remotelocation}: checking local build" fn_script_log_error "Checking local build" fi - sleep 0.5 } fn_update_mumble_remotebuild(){ @@ -48,7 +46,6 @@ fn_update_mumble_remotebuild(){ remotebuild=$(${curlpath} -s "https://api.github.com/repos/mumble-voip/mumble/releases/latest" | grep 'murmur-static_x86.*\.bz2"' | tail -1 | awk -F"/" '{ print $8 }') if [ "${installer}" != "1" ]; then fn_print_dots "Checking for update: ${remotelocation}: checking remote build" - sleep 0.5 # Checks if remotebuild variable has been set. if [ -z "${remotebuild}" ]||[ "${remotebuild}" == "null" ]; then fn_print_fail "Checking for update: ${remotelocation}: checking remote build" @@ -57,7 +54,6 @@ fn_update_mumble_remotebuild(){ else fn_print_ok "Checking for update: ${remotelocation}: checking remote build" fn_script_log_pass "Checking remote build" - sleep 0.5 fi else # Checks if remotebuild variable has been set. @@ -66,18 +62,16 @@ fn_update_mumble_remotebuild(){ fn_script_log_fatal "Unable to get remote build" core_exit.sh fi - fi + fi } fn_update_mumble_compare(){ # Removes dots so if statement can compare version numbers. fn_print_dots "Checking for update: ${remotelocation}" - sleep 0.5 localbuilddigit=$(echo "${localbuild}" | tr -cd '[:digit:]') remotebuilddigit=$(echo "${remotebuild}" | tr -cd '[:digit:]') if [ "${localbuilddigit}" -ne "${remotebuilddigit}" ]||[ "${forceupdate}" == "1" ]; then fn_print_ok_nl "Checking for update: ${remotelocation}" - sleep 0.5 echo -en "\n" echo -e "Update available" echo -e "* Local build: ${red}${localbuild} ${mumblearch}${default}" @@ -86,7 +80,7 @@ fn_update_mumble_compare(){ fn_script_log_info "Local build: ${localbuild} ${mumblearch}" fn_script_log_info "Remote build: ${remotebuild} ${mumblearch}" fn_script_log_info "${localbuild} > ${remotebuild}" - sleep 0.5 + fn_sleep_time echo -en "\n" echo -en "applying update.\r" sleep 1 @@ -120,7 +114,6 @@ fn_update_mumble_compare(){ alert.sh else fn_print_ok_nl "Checking for update: ${remotelocation}" - sleep 0.5 echo -en "\n" echo -e "No update available" echo -e "* Local build: ${green}${localbuild} ${mumblearch}${default}" @@ -143,7 +136,6 @@ if [ "${installer}" == "1" ]; then else fn_print_dots "Checking for update: ${remotelocation}" fn_script_log_info "Checking for update: ${remotelocation}" - sleep 0.5 fn_update_mumble_localbuild fn_update_mumble_remotebuild fn_update_mumble_compare diff --git a/lgsm/functions/update_steamcmd.sh b/lgsm/functions/update_steamcmd.sh index 9fd29eff7..7b690643d 100644 --- a/lgsm/functions/update_steamcmd.sh +++ b/lgsm/functions/update_steamcmd.sh @@ -31,7 +31,6 @@ fn_update_steamcmd_dl(){ fn_update_steamcmd_localbuild(){ # Gets local build info. fn_print_dots "Checking for update: ${remotelocation}: checking local build" - sleep 0.5 fn_appmanifest_check # Uses appmanifest to find local build. localbuild=$(grep buildid "${appmanifestfile}" | tr '[:blank:]"' ' ' | tr -s ' ' | cut -d\ -f3) @@ -48,7 +47,7 @@ fn_update_steamcmd_localbuild(){ else branchname="public" fi - sleep 0.5 + fn_sleep_time } fn_update_steamcmd_remotebuild(){ @@ -57,7 +56,6 @@ fn_update_steamcmd_remotebuild(){ remotebuild=$(./steamcmd.sh +login "${steamuser}" "${steampass}" +app_info_update 1 +app_info_print "${appid}" +quit | sed '1,/branches/d' | sed "1,/${branchname}/d" | grep -m 1 buildid | tr -cd '[:digit:]') if [ "${installer}" != "1" ]; then fn_print_dots "Checking for update: ${remotelocation}: checking remote build" - sleep 0.5 # Checks if remotebuild variable has been set. if [ -z "${remotebuild}" ]||[ "${remotebuild}" == "null" ]; then fn_print_fail "Checking for update: ${remotelocation}: checking remote build" @@ -66,7 +64,6 @@ fn_update_steamcmd_remotebuild(){ else fn_print_ok "Checking for update: ${remotelocation}: checking remote build" fn_script_log_pass "Checking remote build" - sleep 0.5 fi else # Checks if remotebuild variable has been set. @@ -80,10 +77,8 @@ fn_update_steamcmd_remotebuild(){ fn_update_steamcmd_compare(){ fn_print_dots "Checking for update: ${remotelocation}" - sleep 0.5 if [ "${localbuild}" != "${remotebuild}" ]; then fn_print_ok_nl "Checking for update: ${remotelocation}" - sleep 0.5 echo -en "\n" echo -e "Update available" echo -e "* Local build: ${red}${localbuild}${default}" @@ -99,7 +94,7 @@ fn_update_steamcmd_compare(){ fn_script_log_info "Branch: ${branch}" fi fn_script_log_info "${localbuild} > ${remotebuild}" - sleep 0.5 + fn_sleep_time echo -en "\n" echo -en "applying update.\r" sleep 1 @@ -128,7 +123,6 @@ fn_update_steamcmd_compare(){ alert.sh else fn_print_ok_nl "Checking for update: ${remotelocation}" - sleep 0.5 echo -en "\n" echo -e "No update available" echo -e "* Local build: ${green}${localbuild}${default}" @@ -156,22 +150,18 @@ fn_appmanifest_check(){ # Multiple or no matching appmanifest files may sometimes be present. # This error is corrected if required. if [ "${appmanifestfilewc}" -ge "2" ]; then - sleep 0.5 + fn_sleep_time fn_print_error "Multiple appmanifest_${appid}.acf files found" fn_script_log_error "Multiple appmanifest_${appid}.acf files found" - sleep 2 fn_print_dots "Removing x${appmanifestfilewc} appmanifest_${appid}.acf files" - sleep 0.5 for appfile in ${appmanifestfile}; do rm "${appfile}" done - sleep 0.5 appmanifestfilewc1="${appmanifestfilewc}" fn_appmanifest_info if [ "${appmanifestfilewc}" -ge "2" ]; then fn_print_fail "Unable to remove x${appmanifestfilewc} appmanifest_${appid}.acf files" fn_script_log_fatal "Unable to remove x${appmanifestfilewc} appmanifest_${appid}.acf files" - sleep 0.5 echo " * Check user permissions" for appfile in ${appmanifestfile}; do echo " ${appfile}" @@ -180,19 +170,15 @@ fn_appmanifest_check(){ else fn_print_ok "Removed x${appmanifestfilewc1} appmanifest_${appid}.acf files" fn_script_log_pass "Removed x${appmanifestfilewc1} appmanifest_${appid}.acf files" - sleep 0.5 fn_print_info_nl "Forcing update to correct issue" fn_script_log_info "Forcing update to correct issue" - sleep 0.5 fn_update_steamcmd_dl fi elif [ "${appmanifestfilewc}" -eq "0" ]; then fn_print_error_nl "No appmanifest_${appid}.acf found" fn_script_log_error "No appmanifest_${appid}.acf found" - sleep 0.5 fn_print_info_nl "Forcing update to correct issue" fn_script_log_info "Forcing update to correct issue" - sleep 0.5 fn_update_steamcmd_dl fn_appmanifest_info if [ "${appmanifestfilewc}" -eq "0" ]; then diff --git a/lgsm/functions/update_ts3.sh b/lgsm/functions/update_ts3.sh index e64bd8f3a..31a015e6e 100644 --- a/lgsm/functions/update_ts3.sh +++ b/lgsm/functions/update_ts3.sh @@ -33,18 +33,15 @@ fn_update_ts3_dl(){ fn_update_ts3_localbuild(){ # Gets local build info. fn_print_dots "Checking for update: ${remotelocation}: checking local build" - sleep 0.5 + fn_sleep_time # Uses log file to gather info. # Gives time for log file to generate. if [ ! -d "${serverfiles}/logs" ]||[ -z "$(find "${serverfiles}/logs/"* -name 'ts3server*_0.log' 2> /dev/null)" ]; then fn_print_error "Checking for update: ${remotelocation}: checking local build" - sleep 0.5 fn_print_error_nl "Checking for update: ${remotelocation}: checking local build: no log files" fn_script_log_error "No log file found" - sleep 0.5 fn_print_info_nl "Checking for update: ${remotelocation}: checking local build: forcing server restart" fn_script_log_info "Forcing server restart" - sleep 0.5 exitbypass=1 command_stop.sh exitbypass=1 @@ -64,9 +61,8 @@ fn_update_ts3_localbuild(){ fn_print_error "Checking for update: ${remotelocation}: waiting for log file: missing log file" fn_script_log_error "Missing log file" fn_script_log_error "Set localbuild to 0" - sleep 0.5 fi - + totalseconds=$((totalseconds + 1)) done fi @@ -84,7 +80,7 @@ fn_update_ts3_localbuild(){ if [ -z "${loopignore}" ]; then loopignore=1 fn_script_log_info "Waiting for local build to generate" - fi + fi localbuild=$(cat $(find ./* -name "ts3server*_0.log" 2> /dev/null | sort | tail -1) | grep -Eo "TeamSpeak 3 Server ((\.)?[0-9]{1,3}){1,3}\.[0-9]{1,3}" | grep -Eo "((\.)?[0-9]{1,3}){1,3}\.[0-9]{1,3}") if [ "${localbuild}" ]; then break @@ -93,7 +89,7 @@ fn_update_ts3_localbuild(){ totalseconds=$((totalseconds + 1)) done fi - + if [ -z "${localbuild}" ]; then localbuild="0" fn_print_error "Checking for update: ${remotelocation}: waiting for local build: missing local build info" @@ -103,7 +99,6 @@ fn_update_ts3_localbuild(){ fn_print_ok "Checking for update: ${remotelocation}: checking local build" fn_script_log_pass "Checking local build" fi - sleep 0.5 } fn_update_ts3_remotebuild(){ @@ -115,7 +110,6 @@ fn_update_ts3_remotebuild(){ fi if [ "${installer}" != "1" ]; then fn_print_dots "Checking for update: ${remotelocation}: checking remote build" - sleep 0.5 # Checks if remotebuild variable has been set. if [ -z "${remotebuild}" ]||[ "${remotebuild}" == "null" ]; then fn_print_fail "Checking for update: ${remotelocation}: checking remote build" @@ -124,7 +118,6 @@ fn_update_ts3_remotebuild(){ else fn_print_ok "Checking for update: ${remotelocation}: checking remote build" fn_script_log_pass "Checking remote build" - sleep 0.5 fi else # Checks if remotebuild variable has been set. @@ -133,18 +126,16 @@ fn_update_ts3_remotebuild(){ fn_script_log_fatal "Unable to get remote build" core_exit.sh fi - fi + fi } fn_update_ts3_compare(){ # Removes dots so if statement can compare version numbers. fn_print_dots "Checking for update: ${remotelocation}" - sleep 0.5 localbuilddigit=$(echo "${localbuild}" | tr -cd '[:digit:]') remotebuilddigit=$(echo "${remotebuild}" | tr -cd '[:digit:]') if [ "${localbuilddigit}" -ne "${remotebuilddigit}" ]||[ "${forceupdate}" == "1" ]; then fn_print_ok_nl "Checking for update: ${remotelocation}" - sleep 0.5 echo -en "\n" echo -e "Update available" echo -e "* Local build: ${red}${localbuild}${default}" @@ -153,7 +144,7 @@ fn_update_ts3_compare(){ fn_script_log_info "Local build: ${localbuild}" fn_script_log_info "Remote build: ${remotebuild}" fn_script_log_info "${localbuild} > ${remotebuild}" - sleep 0.5 + fn_sleep_time echo -en "\n" echo -en "applying update.\r" sleep 1 @@ -187,7 +178,6 @@ fn_update_ts3_compare(){ alert.sh else fn_print_ok_nl "Checking for update: ${remotelocation}" - sleep 0.5 echo -en "\n" echo -e "No update available" echo -e "* Local build: ${green}${localbuild}${default}" @@ -219,7 +209,6 @@ if [ "${installer}" == "1" ]; then else fn_print_dots "Checking for update: ${remotelocation}" fn_script_log_info "Checking for update: ${remotelocation}" - sleep 0.5 fn_update_ts3_localbuild fn_update_ts3_remotebuild fn_update_ts3_compare diff --git a/tests/tests_fctrserver.sh b/tests/tests_fctrserver.sh index 330742abb..4151a7f21 100644 --- a/tests/tests_fctrserver.sh +++ b/tests/tests_fctrserver.sh @@ -411,7 +411,6 @@ fn_setstatus(){ echo -e "\n" echo "Test starting:" echo "" - sleep 0.5 } # End of every test will expect the result to either pass or fail diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index f71d5a669..2f0103025 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -411,7 +411,6 @@ fn_setstatus(){ echo -e "\n" echo "Test starting:" echo "" - sleep 0.5 } # End of every test will expect the result to either pass or fail diff --git a/tests/tests_mcserver.sh b/tests/tests_mcserver.sh index 9e5eb5442..6df2da2ac 100644 --- a/tests/tests_mcserver.sh +++ b/tests/tests_mcserver.sh @@ -411,7 +411,6 @@ fn_setstatus(){ echo -e "\n" echo "Test starting:" echo "" - sleep 0.5 } # End of every test will expect the result to either pass or fail @@ -797,7 +796,7 @@ echo "give time for server to fully start." echo "Command: sleep 30" requiredstatus="ONLINE" fn_setstatus -sleep 60 +sleep 30 echo "" echo "5.1 - monitor - online" diff --git a/tests/tests_ts3server.sh b/tests/tests_ts3server.sh index 809bc2d2a..f4de2baa5 100644 --- a/tests/tests_ts3server.sh +++ b/tests/tests_ts3server.sh @@ -411,7 +411,6 @@ fn_setstatus(){ echo -e "\n" echo "Test starting:" echo "" - sleep 0.5 } # End of every test will expect the result to either pass or fail From 9d7c9cca5c9a9c6a3de16c35dedfbf6a320d561a Mon Sep 17 00:00:00 2001 From: Frisasky Date: Tue, 21 May 2019 04:47:33 +0800 Subject: [PATCH 04/20] fix(squadserver): resolve executable and config issues (#2362) Co-authored-by: Frisa --- lgsm/config-default/config-lgsm/squadserver/_default.cfg | 2 +- lgsm/functions/install_config.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/config-default/config-lgsm/squadserver/_default.cfg b/lgsm/config-default/config-lgsm/squadserver/_default.cfg index a4f2c704e..1d82936e5 100644 --- a/lgsm/config-default/config-lgsm/squadserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/squadserver/_default.cfg @@ -106,7 +106,7 @@ engine="unreal4" ## Server Specific Directories systemdir="${serverfiles}/Squad" executabledir="${serverfiles}" -executable="./SquadServer.sh" +executable="./SquadGameServer.sh" servercfg="${servicename}.cfg" servercfgdefault="Server.cfg" servercfgdir="${systemdir}/ServerConfig" diff --git a/lgsm/functions/install_config.sh b/lgsm/functions/install_config.sh index 997624f73..ccbcfea23 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -532,7 +532,7 @@ elif [ "${gamename}" == "Serious Sam 3: BFE" ]; then fn_set_config_vars elif [ "${gamename}" == "Squad" ]; then gamedirname="Squad" - array_configs+=( Server.cfg Rcon.cfg ) + array_configs+=( Admins.cfg Bans.cfg License.cfg Server.cfg Rcon.cfg ) fn_fetch_default_config fn_default_config_remote fn_set_config_vars From e2ca77de3b95a737b6aaf4d7454362e354e3ba30 Mon Sep 17 00:00:00 2001 From: tkrn Date: Mon, 3 Jun 2019 16:37:44 -0400 Subject: [PATCH 05/20] feat(newserver): Soldier of Fortune 2: Gold Edition (#2359) Co-authored-by: tkrn --- .../config-lgsm/sof2server/_default.cfg | 119 ++++++++++++++++++ lgsm/data/serverlist.csv | 1 + lgsm/functions/core_functions.sh | 5 + lgsm/functions/fix.sh | 2 + lgsm/functions/fix_sof2.sh | 11 ++ lgsm/functions/info_config.sh | 23 ++++ lgsm/functions/info_glibc.sh | 3 + lgsm/functions/info_messages.sh | 11 ++ lgsm/functions/info_parms.sh | 14 +++ lgsm/functions/install_config.sh | 6 + lgsm/functions/install_server_files.sh | 2 + 11 files changed, 197 insertions(+) create mode 100644 lgsm/config-default/config-lgsm/sof2server/_default.cfg create mode 100644 lgsm/functions/fix_sof2.sh diff --git a/lgsm/config-default/config-lgsm/sof2server/_default.cfg b/lgsm/config-default/config-lgsm/sof2server/_default.cfg new file mode 100644 index 000000000..cb35b339c --- /dev/null +++ b/lgsm/config-default/config-lgsm/sof2server/_default.cfg @@ -0,0 +1,119 @@ +################################## +######## Default Settings ######## +################################## +# DO NOT EDIT WILL BE OVERWRITTEN! +# Copy settings from here and use them in either +# common.cfg - applies settings to every instance +# [instance].cfg - applies settings to a specific instance + +#### Server Settings #### + +## Server Start Settings | https://docs.linuxgsm.com/configuration/start-parameters +ip="0.0.0.0" +port="20100" +defaultmap="mp_shop" + +## Server Start Command | https://docs.linuxgsm.com/configuration/start-parameters#additional-parameters +fn_parms(){ +parms="+set sv_punkbuster 0 +set dedicated 2 +set net_ip ${ip} +set net_port ${port} +exec ${servercfg} +map ${defaultmap}" +} + +#### LinuxGSM Settings #### + +## Notification Alerts +# (on|off) + +# More info | https://docs.linuxgsm.com/alerts#more-info +postalert="off" +postdays="7" +posttarget="https://hastebin.com" + +# Discord Alerts | https://docs.linuxgsm.com/alerts/discord +discordalert="off" +discordwebhook="webhook" + +# Email Alerts | https://docs.linuxgsm.com/alerts/email +emailalert="off" +email="email@example.com" +emailfrom="" + +# IFTTT Alerts | https://docs.linuxgsm.com/alerts/ifttt +iftttalert="off" +ifttttoken="accesstoken" +iftttevent="linuxgsm_alert" + +# Mailgun Email Alerts | https://docs.linuxgsm.com/alerts/mailgun +mailgunalert="off" +mailguntoken="accesstoken" +mailgundomain="example.com" +mailgunemailfrom="alert@example.com" +mailgunemail="email@myemail.com" + +# Pushbullet Alerts | https://docs.linuxgsm.com/alerts/pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" +channeltag="" + +# Pushover Alerts | https://docs.linuxgsm.com/alerts/pushover +pushoveralert="off" +pushovertoken="accesstoken" + +# Telegram Alerts | https://docs.linuxgsm.com/alerts/telegram +# You can add a custom cURL string eg proxy (useful in Russia) or else in "curlcustomstring". +# like a "--socks5 ipaddr:port" for socks5 proxy see more in "curl --help", if you not need +# any custom string in curl - simple ignore this parameter. +telegramalert="off" +telegramtoken="accesstoken" +telegramchatid="" +curlcustomstring="" + +## Backup | https://docs.linuxgsm.com/commands/backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://docs.linuxgsm.com/features/logging +consolelogging="on" +logdays="7" + +#### LinuxGSM Advanced Settings #### + +# ANSI Colors +ansi="on" + +# Message Display Time +sleeptime="0.5" + +## LinuxGSM Server Details +# Do not edit +gamename="Soldier Of Fortune 2: Gold Edition" +engine="idtech3" + +#### Directories #### +# Edit with care + +## Server Specific Directories +systemdir="${serverfiles}/main" +executabledir="${serverfiles}" +executable="./sof2ded" +servercfg="${servicename}.cfg" +servercfgdefault="server.cfg" +servercfgdir="${systemdir}" +servercfgfullpath="${servercfgdir}/${servercfg}" + +## Backup Directory +backupdir="${rootdir}/backups" + +## Logging Directories +logdir="${rootdir}/log" +gamelogdir="${serverfiles}/Logs" +lgsmlogdir="${logdir}/script" +consolelogdir="${logdir}/console" +lgsmlog="${lgsmlogdir}/${servicename}-script.log" +consolelog="${consolelogdir}/${servicename}-console.log" +alertlog="${lgsmlogdir}/${servicename}-alert.log" +postdetailslog="${lgsmlogdir}/${servicename}-postdetails.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" diff --git a/lgsm/data/serverlist.csv b/lgsm/data/serverlist.csv index 4eefca614..b9494bede 100644 --- a/lgsm/data/serverlist.csv +++ b/lgsm/data/serverlist.csv @@ -70,6 +70,7 @@ rust,rustserver,Rust rw,rwserver, Rising World samp,sampserver,San Andreas Multiplayer sbots,sbotsserver, StickyBots +sof2,sof2server,Soldier Of Fortune 2: Gold Edition ss3,ss3server,Serious Sam 3: BFE sb,sbserver,Starbound st,stserver,Stationeers diff --git a/lgsm/functions/core_functions.sh b/lgsm/functions/core_functions.sh index dd18e0d2c..e8346dae1 100644 --- a/lgsm/functions/core_functions.sh +++ b/lgsm/functions/core_functions.sh @@ -382,6 +382,11 @@ functionfile="${FUNCNAME}" fn_fetch_function } +fix_sof2.sh(){ +functionfile="${FUNCNAME}" +fn_fetch_function +} + fix_ss3.sh(){ functionfile="${FUNCNAME}" fn_fetch_function diff --git a/lgsm/functions/fix.sh b/lgsm/functions/fix.sh index 9fddc3189..a92d1b855 100644 --- a/lgsm/functions/fix.sh +++ b/lgsm/functions/fix.sh @@ -55,6 +55,8 @@ if [ "${function_selfname}" != "command_install.sh" ]&&[ -z "${fixbypass}" ]; th fix_rw.sh elif [ "${shortname}" == "sdtd" ]; then fix_sdtd.sh + elif [ "${shortname}" == "sof2" ]; then + fix_sof2.sh elif [ "${shortname}" == "ss3" ]; then fix_ss3.sh elif [ "${shortname}" == "tf2" ]; then diff --git a/lgsm/functions/fix_sof2.sh b/lgsm/functions/fix_sof2.sh new file mode 100644 index 000000000..2715f7f8c --- /dev/null +++ b/lgsm/functions/fix_sof2.sh @@ -0,0 +1,11 @@ +#!/bin/bash +# LinuxGSM fix_rust.sh function +# Author: Daniel Gibbs +# Website: https://linuxgsm.com +# Description: Resolves startup issue with Soldier of Fortune 2 + +local commandname="FIX" +local commandaction="Fix" + +# Fixes: error while loading shared libraries: libcxa.so.1 +export LD_LIBRARY_PATH=":$LD_LIBRARY_PATH" diff --git a/lgsm/functions/info_config.sh b/lgsm/functions/info_config.sh index 2af5ab5da..11ddb95ec 100644 --- a/lgsm/functions/info_config.sh +++ b/lgsm/functions/info_config.sh @@ -650,6 +650,26 @@ fn_info_config_sbots(){ maxplayers=${maxplayers:-"0"} } +fn_info_config_sof2(){ + if [ ! -f "${servercfgfullpath}" ]; then + rconpassword="${unavailable}" + servername="${unavailable}" + serverpassword="${unavailable}" + maxplayers="${zero}" + else + rconpassword=$(grep "rconpassword" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set rconpassword//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + servername=$(grep "sv_hostname" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set sv_hostname//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + serverpassword=$(grep "g_password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set g_password//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + maxplayers=$(grep "sv_maxclients" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]') + + # Not Set + rconpassword=${rconpassword:-"NOT SET"} + servername=${servername:-"NOT SET"} + serverpassword=${serverpassword:-"NOT SET"} + maxplayers=${maxplayers:-"0"} + fi +} + fn_info_config_source(){ if [ ! -f "${servercfgfullpath}" ]; then servername="${unavailable}" @@ -1250,6 +1270,9 @@ elif [ "${shortname}" == "rw" ]; then # Serious Sam elif [ "${shortname}" == "ss3" ]; then fn_info_config_seriousengine35 +# Soldier Of Fortune 2: Gold Edition +elif [ "${shortname}" == "sof2" ]; then + fn_info_config_sof2 # Source Engine Games elif [ "${engine}" == "source" ]||[ "${engine}" == "goldsource" ]; then fn_info_config_source diff --git a/lgsm/functions/info_glibc.sh b/lgsm/functions/info_glibc.sh index 63bbdd6d5..b82140b24 100644 --- a/lgsm/functions/info_glibc.sh +++ b/lgsm/functions/info_glibc.sh @@ -111,6 +111,9 @@ elif [ "${gamename}" == "Return to Castle Wolfenstein" ]; then elif [ "${shortname}" == "rw" ]; then glibcrequired="2.14" glibcfix="no" +elif [ "${gamename}" == "Soldier Of Fortune 2: Gold Edition" ]; then + glibcrequired="2.1" + glibcfix="no" elif [ "${gamename}" == "San Andreas Multiplayer" ]; then glibcrequired="2.3" glibcfix="no" diff --git a/lgsm/functions/info_messages.sh b/lgsm/functions/info_messages.sh index 3cdfb6477..a5cb8bce1 100644 --- a/lgsm/functions/info_messages.sh +++ b/lgsm/functions/info_messages.sh @@ -942,6 +942,15 @@ fn_info_message_sdtd(){ } | column -s $'\t' -t } +fn_info_message_sof2(){ + echo -e "netstat -atunp | grep sof2ded" + echo -e "" + { + echo -e "DESCRIPTION\tDIRECTION\tPORT\tPROTOCOL" + echo -e "> Game/Query\tINBOUND\t${port}\tudp" + } | column -s $'\t' -t +} + fn_info_message_source(){ echo -e "netstat -atunp | grep srcds_linux" echo -e "" @@ -1284,6 +1293,8 @@ fn_info_message_select_engine(){ fn_info_message_seriousengine35 elif [ "${engine}" == "source" ]; then fn_info_message_source + elif [ "${gamename}" == "Soldier Of Fortune 2: Gold Edition" ]; then + fn_info_message_sof2 elif [ "${engine}" == "spark" ]; then fn_info_message_spark elif [ "${engine}" == "starbound" ]; then diff --git a/lgsm/functions/info_parms.sh b/lgsm/functions/info_parms.sh index 544c8178c..7b080036d 100644 --- a/lgsm/functions/info_parms.sh +++ b/lgsm/functions/info_parms.sh @@ -111,6 +111,11 @@ fn_info_parms_rust(){ tickrate=${tickrate:-"0"} } +fn_info_parms_sof2(){ + port=${port:-"0"} + defaultmap=${defaultmap:-"NOT SET"} +} + fn_info_parms_source(){ defaultmap=${defaultmap:-"NOT SET"} maxplayers=${maxplayers:-"0"} @@ -141,6 +146,12 @@ fn_info_parms_stickybots(){ maxplayers=${maxplayers:-"0"} } +fn_info_parms_sof2(){ + port=${port:-"0"} + queryport=${port} + defaultmap=${defaultmap:-"NOT SET"} +} + fn_info_parms_towerunite(){ port=${port:-"0"} queryport=${queryport:-"0"} @@ -214,6 +225,9 @@ elif [ "${shortname}" == "rust" ]; then # Rising World elif [ "${shortname}" == "rw" ]; then fn_info_parms_risingworld +# Soldier Of Fortune 2: Gold Edition +elif [ "${shortname}" == "sof2" ]; then + fn_info_parms_sof2 # Sticky Bots elif [ "${shortname}" == "sbots" ]; then fn_info_parms_stickybots diff --git a/lgsm/functions/install_config.sh b/lgsm/functions/install_config.sh index ccbcfea23..cb5a431ad 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -530,6 +530,12 @@ elif [ "${gamename}" == "Serious Sam 3: BFE" ]; then fn_fetch_default_config fn_default_config_remote fn_set_config_vars +elif [ "${gamename}" == "Soldier Of Fortune 2: Gold Edition" ]; then + gamedirname="SoldierOfFortune2Gold" + array_configs+=( server.cfg mapcycle.txt) + fn_fetch_default_config + fn_default_config_remote + fn_set_config_vars elif [ "${gamename}" == "Squad" ]; then gamedirname="Squad" array_configs+=( Admins.cfg Bans.cfg License.cfg Server.cfg Rcon.cfg ) diff --git a/lgsm/functions/install_server_files.sh b/lgsm/functions/install_server_files.sh index e921e9c15..cf2ee3e90 100644 --- a/lgsm/functions/install_server_files.sh +++ b/lgsm/functions/install_server_files.sh @@ -37,6 +37,8 @@ fn_install_server_files(){ remote_fileurl="https://files.linuxgsm.com/QuakeWorld/nquake.server.linux.190506.full.tar.bz2"; local_filedir="${tmpdir}"; local_filename="nquake.server.linux.190506.full.tar.bz2"; chmodx="nochmodx" run="norun"; force="noforce"; md5="74405ec030463c5e1175e776ab572d32" elif [ "${shortname}" == "rtcw" ]; then remote_fileurl="https://files.linuxgsm.com/ReturnToCastleWolfenstein/iortcw-1.51c-x86_64-server-linux-20190507.tar.bz2"; local_filedir="${tmpdir}"; local_filename="iortcw-1.51c-x86_64-server-linux-20190507.tar.bz2"; chmodx="nochmodx" run="norun"; force="noforce"; md5="6a3be9700372b228d1187422464e4212" + elif [ "${shortname}" == "sof2" ]; then + remote_fileurl="https://files.linuxgsm.com/SoldierOfFortune2/sof2gold-1.03.tar.bz2"; local_filedir="${tmpdir}"; local_filename="sof2gold-1.03.tar.bz2"; chmodx="nochmodx" run="norun"; force="noforce"; md5="871b1dc0dafeeace65b198119e8fa200" elif [ "${shortname}" == "ut2k4" ]; then remote_fileurl="https://files.linuxgsm.com/UnrealTournament2004/ut2004-server-3369-2-ultimate-linux.tar.bz2"; local_filedir="${tmpdir}"; local_filename="ut2004-server-3369-2-ultimate-linux.tar.bz2"; chmodx="nochmodx" run="norun"; force="noforce"; md5="67c5e2cd9c2a4b04f163962ee41eff54" elif [ "${shortname}" == "ut99" ]; then From c4978b6ce8761dfb7554ab2ed7c8575c2987324a Mon Sep 17 00:00:00 2001 From: Kirill Shamilin Date: Mon, 3 Jun 2019 23:40:32 +0300 Subject: [PATCH 06/20] fix(ts3server): fix ability to update TS3 on older i686 arch. (#2367) Co-authored-by: Kirill Shamilin --- lgsm/functions/update_ts3.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/update_ts3.sh b/lgsm/functions/update_ts3.sh index 31a015e6e..bef15b53b 100644 --- a/lgsm/functions/update_ts3.sh +++ b/lgsm/functions/update_ts3.sh @@ -103,9 +103,9 @@ fn_update_ts3_localbuild(){ fn_update_ts3_remotebuild(){ # Gets remote build info. - if [ "${arch}" == "x86_64" ]; then + if [ "${ts3arch}" == "x86_64" ]; then remotebuild="$(${curlpath} -s "https://www.teamspeak.com/versions/server.json" | jq -r '.linux.x86_64.version')" - elif [ "${arch}" == "x86" ]; then + elif [ "${ts3arch}" == "x86" ]; then remotebuild="$(${curlpath} -s "https://www.teamspeak.com/versions/server.json" | jq -r '.linux.x86.version')" fi if [ "${installer}" != "1" ]; then From ef130971753144de3eca3f98c91538df1606ae37 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 9 Jun 2019 00:21:26 +0100 Subject: [PATCH 07/20] Revert "fix(ts3server): fix ability to update TS3 on older i686 arch. (#2367)" (#2381) This reverts commit c4978b6ce8761dfb7554ab2ed7c8575c2987324a. --- lgsm/functions/update_ts3.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/update_ts3.sh b/lgsm/functions/update_ts3.sh index bef15b53b..31a015e6e 100644 --- a/lgsm/functions/update_ts3.sh +++ b/lgsm/functions/update_ts3.sh @@ -103,9 +103,9 @@ fn_update_ts3_localbuild(){ fn_update_ts3_remotebuild(){ # Gets remote build info. - if [ "${ts3arch}" == "x86_64" ]; then + if [ "${arch}" == "x86_64" ]; then remotebuild="$(${curlpath} -s "https://www.teamspeak.com/versions/server.json" | jq -r '.linux.x86_64.version')" - elif [ "${ts3arch}" == "x86" ]; then + elif [ "${arch}" == "x86" ]; then remotebuild="$(${curlpath} -s "https://www.teamspeak.com/versions/server.json" | jq -r '.linux.x86.version')" fi if [ "${installer}" != "1" ]; then From c4ff9c80faca7b08ada26d1d47d5189f9cfda6fa Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 9 Jun 2019 00:38:10 +0100 Subject: [PATCH 08/20] feat(glibc): migrate glibc info to _default.cfg (#2379) --- .../config-lgsm/arkserver/_default.cfg | 3 +- .../config-lgsm/arma3server/_default.cfg | 3 +- .../config-lgsm/bb2server/_default.cfg | 3 +- .../config-lgsm/bbserver/_default.cfg | 3 +- .../config-lgsm/bdserver/_default.cfg | 3 +- .../config-lgsm/bf1942server/_default.cfg | 3 +- .../config-lgsm/bmdmserver/_default.cfg | 3 +- .../config-lgsm/boserver/_default.cfg | 3 +- .../config-lgsm/bsserver/_default.cfg | 3 +- .../config-lgsm/bt1944server/_default.cfg | 3 +- .../config-lgsm/ccserver/_default.cfg | 3 +- .../config-lgsm/cod2server/_default.cfg | 3 +- .../config-lgsm/cod4server/_default.cfg | 3 +- .../config-lgsm/codserver/_default.cfg | 3 +- .../config-lgsm/coduoserver/_default.cfg | 3 +- .../config-lgsm/codwawserver/_default.cfg | 3 +- .../config-lgsm/csczserver/_default.cfg | 3 +- .../config-lgsm/csgoserver/_default.cfg | 5 +- .../config-lgsm/csserver/_default.cfg | 3 +- .../config-lgsm/cssserver/_default.cfg | 3 +- .../config-lgsm/dabserver/_default.cfg | 3 +- .../config-lgsm/dmcserver/_default.cfg | 3 +- .../config-lgsm/dodserver/_default.cfg | 3 +- .../config-lgsm/dodsserver/_default.cfg | 3 +- .../config-lgsm/doiserver/_default.cfg | 3 +- .../config-lgsm/dstserver/_default.cfg | 3 +- .../config-lgsm/dysserver/_default.cfg | 3 +- .../config-lgsm/ecoserver/_default.cfg | 3 +- .../config-lgsm/emserver/_default.cfg | 3 +- .../config-lgsm/etlserver/_default.cfg | 3 +- .../config-lgsm/fctrserver/_default.cfg | 3 +- .../config-lgsm/fofserver/_default.cfg | 3 +- .../config-lgsm/gesserver/_default.cfg | 4 +- .../config-lgsm/gmodserver/_default.cfg | 3 +- .../config-lgsm/hl2dmserver/_default.cfg | 3 +- .../config-lgsm/hldmserver/_default.cfg | 3 +- .../config-lgsm/hldmsserver/_default.cfg | 3 +- .../config-lgsm/hwserver/_default.cfg | 3 +- .../config-lgsm/insserver/_default.cfg | 3 +- .../config-lgsm/inssserver/_default.cfg | 3 +- .../config-lgsm/iosserver/_default.cfg | 3 +- .../config-lgsm/jc2server/_default.cfg | 3 +- .../config-lgsm/jc3server/_default.cfg | 3 +- .../config-lgsm/kf2server/_default.cfg | 4 +- .../config-lgsm/kfserver/_default.cfg | 3 +- .../config-lgsm/l4d2server/_default.cfg | 3 +- .../config-lgsm/l4dserver/_default.cfg | 3 +- .../config-lgsm/mcserver/_default.cfg | 3 +- .../config-lgsm/mhserver/_default.cfg | 3 +- .../config-lgsm/mtaserver/_default.cfg | 3 +- .../config-lgsm/mumbleserver/_default.cfg | 4 +- .../config-lgsm/ndserver/_default.cfg | 3 +- .../config-lgsm/nmrihserver/_default.cfg | 3 +- .../config-lgsm/ns2cserver/_default.cfg | 3 +- .../config-lgsm/ns2server/_default.cfg | 3 +- .../config-lgsm/nsserver/_default.cfg | 3 +- .../config-lgsm/opforserver/_default.cfg | 3 +- .../config-lgsm/pcserver/_default.cfg | 3 +- .../config-lgsm/pstbsserver/_default.cfg | 3 +- .../config-lgsm/pvkiiserver/_default.cfg | 3 +- .../config-lgsm/pzserver/_default.cfg | 3 +- .../config-lgsm/q2server/_default.cfg | 3 +- .../config-lgsm/q3server/_default.cfg | 3 +- .../config-lgsm/qlserver/_default.cfg | 3 +- .../config-lgsm/qwserver/_default.cfg | 3 +- .../config-lgsm/ricochetserver/_default.cfg | 3 +- .../config-lgsm/roserver/_default.cfg | 3 +- .../config-lgsm/rtcwserver/_default.cfg | 3 +- .../config-lgsm/rustserver/_default.cfg | 3 +- .../config-lgsm/rwserver/_default.cfg | 3 +- .../config-lgsm/sampserver/_default.cfg | 3 +- .../config-lgsm/sbotsserver/_default.cfg | 5 +- .../config-lgsm/sbserver/_default.cfg | 3 +- .../config-lgsm/sdtdserver/_default.cfg | 3 +- .../config-lgsm/sof2server/_default.cfg | 1 + .../config-lgsm/squadserver/_default.cfg | 3 +- .../config-lgsm/ss3server/_default.cfg | 3 +- .../config-lgsm/stserver/_default.cfg | 4 +- .../config-lgsm/svenserver/_default.cfg | 3 +- .../config-lgsm/terrariaserver/_default.cfg | 3 +- .../config-lgsm/tf2server/_default.cfg | 3 +- .../config-lgsm/tfcserver/_default.cfg | 3 +- .../config-lgsm/ts3server/_default.cfg | 4 +- .../config-lgsm/tuserver/_default.cfg | 3 +- .../config-lgsm/twserver/_default.cfg | 3 +- .../config-lgsm/untserver/_default.cfg | 3 +- .../config-lgsm/ut2k4server/_default.cfg | 3 +- .../config-lgsm/ut3server/_default.cfg | 3 +- .../config-lgsm/ut99server/_default.cfg | 3 +- .../config-lgsm/utserver/_default.cfg | 3 +- .../config-lgsm/vsserver/_default.cfg | 3 +- .../config-lgsm/wetserver/_default.cfg | 3 +- .../config-lgsm/wurmserver/_default.cfg | 3 +- .../config-lgsm/zpsserver/_default.cfg | 3 +- lgsm/functions/alert.sh | 3 +- lgsm/functions/check_glibc.sh | 22 +- lgsm/functions/command_debug.sh | 19 +- lgsm/functions/command_details.sh | 2 - lgsm/functions/command_postdetails.sh | 1 - lgsm/functions/core_functions.sh | 7 +- lgsm/functions/info_distro.sh | 7 + lgsm/functions/info_glibc.sh | 236 ------------------ lgsm/functions/info_messages.sh | 17 +- 103 files changed, 235 insertions(+), 368 deletions(-) delete mode 100644 lgsm/functions/info_glibc.sh diff --git a/lgsm/config-default/config-lgsm/arkserver/_default.cfg b/lgsm/config-default/config-lgsm/arkserver/_default.cfg index 9306d3b4e..be19aacf6 100644 --- a/lgsm/config-default/config-lgsm/arkserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/arkserver/_default.cfg @@ -88,7 +88,7 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## SteamCMD Settings @@ -103,6 +103,7 @@ branch="" # Do not edit gamename="ARK: Survival Evolved" engine="unreal4" +glibc="2.15" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/arma3server/_default.cfg b/lgsm/config-default/config-lgsm/arma3server/_default.cfg index 07fff7375..a456e1b44 100644 --- a/lgsm/config-default/config-lgsm/arma3server/_default.cfg +++ b/lgsm/config-default/config-lgsm/arma3server/_default.cfg @@ -102,7 +102,7 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## SteamCMD Settings @@ -117,6 +117,7 @@ branch="" # Do not edit gamename="ARMA 3" engine="realvirtuality" +glibc="2.13" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/bb2server/_default.cfg b/lgsm/config-default/config-lgsm/bb2server/_default.cfg index e04d61e72..0a45d187f 100644 --- a/lgsm/config-default/config-lgsm/bb2server/_default.cfg +++ b/lgsm/config-default/config-lgsm/bb2server/_default.cfg @@ -92,7 +92,7 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## SteamCMD Settings @@ -107,6 +107,7 @@ branch="" # Do not edit gamename="BrainBread 2" engine="source" +glibc="2.17" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/bbserver/_default.cfg b/lgsm/config-default/config-lgsm/bbserver/_default.cfg index 2b891d4ed..1ee54e0c1 100644 --- a/lgsm/config-default/config-lgsm/bbserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/bbserver/_default.cfg @@ -86,7 +86,7 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## SteamCMD Settings @@ -102,6 +102,7 @@ branch="" # Do not edit gamename="BrainBread" engine="goldsource" +glibc="2.3.4" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/bdserver/_default.cfg b/lgsm/config-default/config-lgsm/bdserver/_default.cfg index 602936e6d..404b3b796 100644 --- a/lgsm/config-default/config-lgsm/bdserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/bdserver/_default.cfg @@ -86,7 +86,7 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## SteamCMD Settings @@ -97,6 +97,7 @@ appid="817300" # Do not edit gamename="Base Defense" engine="goldsource" +glibc="2.14" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/bf1942server/_default.cfg b/lgsm/config-default/config-lgsm/bf1942server/_default.cfg index c0f799198..a047bbfb7 100644 --- a/lgsm/config-default/config-lgsm/bf1942server/_default.cfg +++ b/lgsm/config-default/config-lgsm/bf1942server/_default.cfg @@ -79,13 +79,14 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## LinuxGSM Server Details # Do not edit gamename="Battlefield: 1942" engine="refractor" +glibc="2.0" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/bmdmserver/_default.cfg b/lgsm/config-default/config-lgsm/bmdmserver/_default.cfg index 4eb1ceec3..2e27bf99e 100644 --- a/lgsm/config-default/config-lgsm/bmdmserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/bmdmserver/_default.cfg @@ -92,7 +92,7 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## SteamCMD Settings @@ -107,6 +107,7 @@ branch="" # Do not edit gamename="Black Mesa: Deathmatch" engine="source" +glibc="2.15" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/boserver/_default.cfg b/lgsm/config-default/config-lgsm/boserver/_default.cfg index 77a5b0b4b..c41c23b85 100644 --- a/lgsm/config-default/config-lgsm/boserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/boserver/_default.cfg @@ -85,7 +85,7 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## SteamCMD Settings @@ -100,6 +100,7 @@ branch="" # Do not edit gamename="Ballistic Overkill" engine="unity3d" +glibc="2.15" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/bsserver/_default.cfg b/lgsm/config-default/config-lgsm/bsserver/_default.cfg index e9294e0a4..d6ed55c81 100644 --- a/lgsm/config-default/config-lgsm/bsserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/bsserver/_default.cfg @@ -96,7 +96,7 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## SteamCMD Settings @@ -111,6 +111,7 @@ branch="" # Do not edit gamename="Blade Symphony" engine="source" +glibc="2.15" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/bt1944server/_default.cfg b/lgsm/config-default/config-lgsm/bt1944server/_default.cfg index dcb01817b..dfc6333dc 100644 --- a/lgsm/config-default/config-lgsm/bt1944server/_default.cfg +++ b/lgsm/config-default/config-lgsm/bt1944server/_default.cfg @@ -84,7 +84,7 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## SteamCMD Settings @@ -99,6 +99,7 @@ branch="" # Do not edit gamename="Battalion 1944" engine="unreal4" +glibc="2.17" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/ccserver/_default.cfg b/lgsm/config-default/config-lgsm/ccserver/_default.cfg index f07e8bf87..5fd37c64c 100644 --- a/lgsm/config-default/config-lgsm/ccserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/ccserver/_default.cfg @@ -87,7 +87,7 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## SteamCMD Settings @@ -102,6 +102,7 @@ branch="" # Do not edit gamename="Codename CURE" engine="source" +glibc="2.15" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/cod2server/_default.cfg b/lgsm/config-default/config-lgsm/cod2server/_default.cfg index 1bbc6abb2..be01e6fb4 100644 --- a/lgsm/config-default/config-lgsm/cod2server/_default.cfg +++ b/lgsm/config-default/config-lgsm/cod2server/_default.cfg @@ -82,13 +82,14 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## LinuxGSM Server Details # Do not edit gamename="Call of Duty 2" engine="iw2.0" +glibc="2.1.3" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/cod4server/_default.cfg b/lgsm/config-default/config-lgsm/cod4server/_default.cfg index d2da96d90..01fe6f560 100644 --- a/lgsm/config-default/config-lgsm/cod4server/_default.cfg +++ b/lgsm/config-default/config-lgsm/cod4server/_default.cfg @@ -82,13 +82,14 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## LinuxGSM Server Details # Do not edit gamename="Call of Duty 4" engine="iw3.0" +glibc="2.3" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/codserver/_default.cfg b/lgsm/config-default/config-lgsm/codserver/_default.cfg index 6797cf433..cd3db5ec5 100644 --- a/lgsm/config-default/config-lgsm/codserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/codserver/_default.cfg @@ -82,13 +82,14 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## LinuxGSM Server Details # Do not edit gamename="Call of Duty" engine="idtech3" +glibc="2.1" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/coduoserver/_default.cfg b/lgsm/config-default/config-lgsm/coduoserver/_default.cfg index ea142dee9..36b08300e 100644 --- a/lgsm/config-default/config-lgsm/coduoserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/coduoserver/_default.cfg @@ -82,13 +82,14 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## LinuxGSM Server Details # Do not edit gamename="Call of Duty: United Offensive" engine="idtech3" +glibc="2.1" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/codwawserver/_default.cfg b/lgsm/config-default/config-lgsm/codwawserver/_default.cfg index 87ddb9468..86f667ffd 100644 --- a/lgsm/config-default/config-lgsm/codwawserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/codwawserver/_default.cfg @@ -82,13 +82,14 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## LinuxGSM Server Details # Do not edit gamename="Call of Duty: World at War" engine="iw3.0" +glibc="2.3.2" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/csczserver/_default.cfg b/lgsm/config-default/config-lgsm/csczserver/_default.cfg index f8b17a3ac..da41f37c9 100644 --- a/lgsm/config-default/config-lgsm/csczserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/csczserver/_default.cfg @@ -86,7 +86,7 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## SteamCMD Settings @@ -102,6 +102,7 @@ branch="" # Do not edit gamename="Counter-Strike: Condition Zero" engine="goldsource" +glibc="2.3.6" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/csgoserver/_default.cfg b/lgsm/config-default/config-lgsm/csgoserver/_default.cfg index 3bd16b090..f81ca8e90 100644 --- a/lgsm/config-default/config-lgsm/csgoserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/csgoserver/_default.cfg @@ -17,7 +17,7 @@ # Custom 3 0 # Deathmatch 1 2 mg_deathmatch # Demolition 1 1 mg_demolition -# Wingman 0 2 +# Wingman 0 2 # Danger Zone 6 0 mg_dz_blacksite (map: dz_blacksite), mg_dz_sirocco (map: dz_sirocco) gametype="0" gamemode="0" @@ -112,7 +112,7 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## SteamCMD Settings @@ -127,6 +127,7 @@ branch="" # Do not edit gamename="Counter-Strike: Global Offensive" engine="source" +glibc="2.15" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/csserver/_default.cfg b/lgsm/config-default/config-lgsm/csserver/_default.cfg index c465ad5c0..bf044c8a6 100644 --- a/lgsm/config-default/config-lgsm/csserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/csserver/_default.cfg @@ -86,7 +86,7 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## SteamCMD Settings @@ -102,6 +102,7 @@ branch="" # Do not edit gamename="Counter-Strike 1.6" engine="goldsource" +glibc="2.3.6" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/cssserver/_default.cfg b/lgsm/config-default/config-lgsm/cssserver/_default.cfg index 945327cf8..beb83ee29 100644 --- a/lgsm/config-default/config-lgsm/cssserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/cssserver/_default.cfg @@ -92,7 +92,7 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## SteamCMD Settings @@ -107,6 +107,7 @@ branch="" # Do not edit gamename="Counter-Strike: Source" engine="source" +glibc="2.3.6" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/dabserver/_default.cfg b/lgsm/config-default/config-lgsm/dabserver/_default.cfg index b3c062c33..e29118a7a 100644 --- a/lgsm/config-default/config-lgsm/dabserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/dabserver/_default.cfg @@ -87,7 +87,7 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## SteamCMD Settings @@ -102,6 +102,7 @@ branch="" # Do not edit gamename="Double Action: Boogaloo" engine="source" +glibc="2.15" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/dmcserver/_default.cfg b/lgsm/config-default/config-lgsm/dmcserver/_default.cfg index be42fe649..412e5ab73 100644 --- a/lgsm/config-default/config-lgsm/dmcserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/dmcserver/_default.cfg @@ -86,7 +86,7 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## SteamCMD Settings @@ -102,6 +102,7 @@ branch="" # Do not edit gamename="Deathmatch Classic" engine="goldsource" +glibc="2.3.4" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/dodserver/_default.cfg b/lgsm/config-default/config-lgsm/dodserver/_default.cfg index 586d825bd..518e821c3 100644 --- a/lgsm/config-default/config-lgsm/dodserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/dodserver/_default.cfg @@ -86,7 +86,7 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## SteamCMD Settings @@ -102,6 +102,7 @@ branch="" # Do not edit gamename="Day of Defeat" engine="goldsource" +glibc="2.3.4" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/dodsserver/_default.cfg b/lgsm/config-default/config-lgsm/dodsserver/_default.cfg index 6c747e26a..67c4dd837 100644 --- a/lgsm/config-default/config-lgsm/dodsserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/dodsserver/_default.cfg @@ -87,7 +87,7 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## SteamCMD Settings @@ -102,6 +102,7 @@ branch="" # Do not edit gamename="Day of Defeat: Source" engine="source" +glibc="2.3.6" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/doiserver/_default.cfg b/lgsm/config-default/config-lgsm/doiserver/_default.cfg index 8f8ffad37..464020800 100644 --- a/lgsm/config-default/config-lgsm/doiserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/doiserver/_default.cfg @@ -89,7 +89,7 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## SteamCMD Settings @@ -104,6 +104,7 @@ branch="" # Do not edit gamename="Day of Infamy" engine="source" +glibc="2.15" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/dstserver/_default.cfg b/lgsm/config-default/config-lgsm/dstserver/_default.cfg index 2674c33f4..ca0eb82f3 100644 --- a/lgsm/config-default/config-lgsm/dstserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/dstserver/_default.cfg @@ -90,7 +90,7 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## SteamCMD Settings @@ -105,6 +105,7 @@ branch="" # Do not edit gamename="Don't Starve Together" engine="dontstarve" +glibc="2.15" ## Service Name | https://docs.linuxgsm.com/features/multiple-game-servers servicename="dst-server-${shard}" diff --git a/lgsm/config-default/config-lgsm/dysserver/_default.cfg b/lgsm/config-default/config-lgsm/dysserver/_default.cfg index 822389fd3..283902256 100644 --- a/lgsm/config-default/config-lgsm/dysserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/dysserver/_default.cfg @@ -92,7 +92,7 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## SteamCMD Settings @@ -107,6 +107,7 @@ branch="" # Do not edit gamename="Dystopia" engine="source" +glibc="2.15" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/ecoserver/_default.cfg b/lgsm/config-default/config-lgsm/ecoserver/_default.cfg index c1936a028..17149df44 100644 --- a/lgsm/config-default/config-lgsm/ecoserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/ecoserver/_default.cfg @@ -75,7 +75,7 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## SteamCMD Settings @@ -90,6 +90,7 @@ branch="" # Do not edit gamename="Eco" engine="unity3d" +glibc="null" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/emserver/_default.cfg b/lgsm/config-default/config-lgsm/emserver/_default.cfg index b2cd2b08a..d7cad367d 100644 --- a/lgsm/config-default/config-lgsm/emserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/emserver/_default.cfg @@ -92,7 +92,7 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## SteamCMD Settings @@ -107,6 +107,7 @@ branch="" # Do not edit gamename="Empires Mod" engine="source" +glibc="2.15" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/etlserver/_default.cfg b/lgsm/config-default/config-lgsm/etlserver/_default.cfg index b2762dc16..b380c8da2 100644 --- a/lgsm/config-default/config-lgsm/etlserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/etlserver/_default.cfg @@ -76,13 +76,14 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## LinuxGSM Server Details # Do not edit gamename="ET: Legacy" engine="idtech3" +glibc="2.7" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/fctrserver/_default.cfg b/lgsm/config-default/config-lgsm/fctrserver/_default.cfg index bb6036d91..699a202fd 100644 --- a/lgsm/config-default/config-lgsm/fctrserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/fctrserver/_default.cfg @@ -87,13 +87,14 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## LinuxGSM Server Details # Do not edit gamename="Factorio" engine="factorio" +glibc="2.18" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/fofserver/_default.cfg b/lgsm/config-default/config-lgsm/fofserver/_default.cfg index 45c9526ce..c2dff17ca 100644 --- a/lgsm/config-default/config-lgsm/fofserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/fofserver/_default.cfg @@ -87,7 +87,7 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## SteamCMD Settings @@ -102,6 +102,7 @@ branch="" # Do not edit gamename="Fistful of Frags" engine="source" +glibc="2.15" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/gesserver/_default.cfg b/lgsm/config-default/config-lgsm/gesserver/_default.cfg index 7f1fc8fcb..e4912eaa6 100644 --- a/lgsm/config-default/config-lgsm/gesserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/gesserver/_default.cfg @@ -87,7 +87,7 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## SteamCMD Settings @@ -102,6 +102,8 @@ branch="" # Do not edit gamename="GoldenEye: Source" engine="source" +glibc="2.15" + #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/gmodserver/_default.cfg b/lgsm/config-default/config-lgsm/gmodserver/_default.cfg index 03990a8a2..33cf589ad 100644 --- a/lgsm/config-default/config-lgsm/gmodserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/gmodserver/_default.cfg @@ -103,7 +103,7 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## SteamCMD Settings @@ -118,6 +118,7 @@ branch="" # Do not edit gamename="Garry's Mod" engine="source" +glibc="2.15" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/hl2dmserver/_default.cfg b/lgsm/config-default/config-lgsm/hl2dmserver/_default.cfg index 974fb0478..15a6e44b1 100644 --- a/lgsm/config-default/config-lgsm/hl2dmserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/hl2dmserver/_default.cfg @@ -87,7 +87,7 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## SteamCMD Settings @@ -102,6 +102,7 @@ branch="" # Do not edit gamename="Half Life 2: Deathmatch" engine="source" +glibc="2.3.6" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/hldmserver/_default.cfg b/lgsm/config-default/config-lgsm/hldmserver/_default.cfg index 6a8dcc880..8705915cd 100644 --- a/lgsm/config-default/config-lgsm/hldmserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/hldmserver/_default.cfg @@ -86,7 +86,7 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## SteamCMD Settings @@ -101,6 +101,7 @@ branch="" # Do not edit gamename="Half Life: Deathmatch" engine="goldsource" +glibc="2.3.4" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/hldmsserver/_default.cfg b/lgsm/config-default/config-lgsm/hldmsserver/_default.cfg index e31fee26d..621bcfff2 100644 --- a/lgsm/config-default/config-lgsm/hldmsserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/hldmsserver/_default.cfg @@ -87,7 +87,7 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## SteamCMD Settings @@ -102,6 +102,7 @@ branch="" # Do not edit gamename="Half-Life Deathmatch: Source" engine="source" +glibc="2.3.6" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/hwserver/_default.cfg b/lgsm/config-default/config-lgsm/hwserver/_default.cfg index 8272cca0b..5014c1608 100644 --- a/lgsm/config-default/config-lgsm/hwserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/hwserver/_default.cfg @@ -98,7 +98,7 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## SteamCMD Settings @@ -113,6 +113,7 @@ branch="" # Do not edit gamename="Hurtworld" engine="unity3d" +glibc="2.15" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/insserver/_default.cfg b/lgsm/config-default/config-lgsm/insserver/_default.cfg index f7f047a10..78fcc3142 100644 --- a/lgsm/config-default/config-lgsm/insserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/insserver/_default.cfg @@ -94,7 +94,7 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## SteamCMD Settings @@ -109,6 +109,7 @@ branch="" # Do not edit gamename="Insurgency" engine="source" +glibc="2.15" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/inssserver/_default.cfg b/lgsm/config-default/config-lgsm/inssserver/_default.cfg index 1714219ec..debd0a48b 100644 --- a/lgsm/config-default/config-lgsm/inssserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/inssserver/_default.cfg @@ -95,7 +95,7 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## SteamCMD Settings @@ -110,6 +110,7 @@ branch="" # Do not edit gamename="Insurgency: Sandstorm" engine="unreal4" +glibc="2.17" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/iosserver/_default.cfg b/lgsm/config-default/config-lgsm/iosserver/_default.cfg index 9d9d61c99..4ba8da210 100644 --- a/lgsm/config-default/config-lgsm/iosserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/iosserver/_default.cfg @@ -87,7 +87,7 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## SteamCMD Settings @@ -102,6 +102,7 @@ branch="" # Do not edit gamename="IOSoccer" engine="source" +glibc="2.3.6" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/jc2server/_default.cfg b/lgsm/config-default/config-lgsm/jc2server/_default.cfg index d539ee38c..514430d91 100644 --- a/lgsm/config-default/config-lgsm/jc2server/_default.cfg +++ b/lgsm/config-default/config-lgsm/jc2server/_default.cfg @@ -79,7 +79,7 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## SteamCMD Settings @@ -94,6 +94,7 @@ branch="" # Do not edit gamename="Just Cause 2" engine="avalanche2.0" +glibc="2.13" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/jc3server/_default.cfg b/lgsm/config-default/config-lgsm/jc3server/_default.cfg index 995fd4714..5f82ae5b5 100644 --- a/lgsm/config-default/config-lgsm/jc3server/_default.cfg +++ b/lgsm/config-default/config-lgsm/jc3server/_default.cfg @@ -79,7 +79,7 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## SteamCMD Settings @@ -94,6 +94,7 @@ branch="" # Do not edit gamename="Just Cause 3" engine="avalanche3.0" +glibc="2.17" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/kf2server/_default.cfg b/lgsm/config-default/config-lgsm/kf2server/_default.cfg index 72c06d1b0..bef2d527f 100644 --- a/lgsm/config-default/config-lgsm/kf2server/_default.cfg +++ b/lgsm/config-default/config-lgsm/kf2server/_default.cfg @@ -85,7 +85,7 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## SteamCMD Settings @@ -100,6 +100,7 @@ branch="" # Do not edit gamename="Killing Floor 2" engine="unreal3" +glibc="2.3.2" #### Directories #### # Edit with care @@ -128,4 +129,3 @@ postdetailslog="${lgsmlogdir}/${servicename}-postdetails.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" - diff --git a/lgsm/config-default/config-lgsm/kfserver/_default.cfg b/lgsm/config-default/config-lgsm/kfserver/_default.cfg index 1644f73cc..9ba4af439 100644 --- a/lgsm/config-default/config-lgsm/kfserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/kfserver/_default.cfg @@ -91,7 +91,7 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## SteamCMD Settings @@ -106,6 +106,7 @@ branch="" # Do not edit gamename="Killing Floor" engine="unreal2" +glibc="2.4" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/l4d2server/_default.cfg b/lgsm/config-default/config-lgsm/l4d2server/_default.cfg index c7205100c..26f0211fb 100644 --- a/lgsm/config-default/config-lgsm/l4d2server/_default.cfg +++ b/lgsm/config-default/config-lgsm/l4d2server/_default.cfg @@ -86,7 +86,7 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## SteamCMD Settings @@ -101,6 +101,7 @@ branch="" # Do not edit gamename="Left 4 Dead 2" engine="source" +glibc="2.3.6" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/l4dserver/_default.cfg b/lgsm/config-default/config-lgsm/l4dserver/_default.cfg index 33e562310..8fc41d29b 100644 --- a/lgsm/config-default/config-lgsm/l4dserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/l4dserver/_default.cfg @@ -86,7 +86,7 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## SteamCMD Settings @@ -101,6 +101,7 @@ branch="" # Do not edit gamename="Left 4 Dead" engine="source" +glibc="2.3.6" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/mcserver/_default.cfg b/lgsm/config-default/config-lgsm/mcserver/_default.cfg index 4bfa870df..103de1620 100644 --- a/lgsm/config-default/config-lgsm/mcserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/mcserver/_default.cfg @@ -81,13 +81,14 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## LinuxGSM Server Details # Do not edit gamename="Minecraft" engine="lwjgl2" +glibc="null" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/mhserver/_default.cfg b/lgsm/config-default/config-lgsm/mhserver/_default.cfg index 2ad316151..f3b0c6b61 100644 --- a/lgsm/config-default/config-lgsm/mhserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/mhserver/_default.cfg @@ -87,7 +87,7 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## SteamCMD Settings @@ -102,6 +102,7 @@ branch="" # Do not edit gamename="MORDHAU" engine="unreal4" +glibc="2.17" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/mtaserver/_default.cfg b/lgsm/config-default/config-lgsm/mtaserver/_default.cfg index bc03ccf15..6af6c2d53 100644 --- a/lgsm/config-default/config-lgsm/mtaserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/mtaserver/_default.cfg @@ -77,13 +77,14 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## LinuxGSM Server Details # Do not edit gamename="Multi Theft Auto" engine="renderware" +glibc="2.7" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/mumbleserver/_default.cfg b/lgsm/config-default/config-lgsm/mumbleserver/_default.cfg index d848af88f..0dcca762f 100644 --- a/lgsm/config-default/config-lgsm/mumbleserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/mumbleserver/_default.cfg @@ -80,12 +80,14 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## LinuxGSM Server Details # Do not edit gamename="Mumble" +engine="null" +glibc="null" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/ndserver/_default.cfg b/lgsm/config-default/config-lgsm/ndserver/_default.cfg index cf7712e3e..9bbab8d20 100644 --- a/lgsm/config-default/config-lgsm/ndserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/ndserver/_default.cfg @@ -87,7 +87,7 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## SteamCMD Settings @@ -102,6 +102,7 @@ branch="" # Do not edit gamename="Nuclear Dawn" engine="source" +glibc="2.3.6" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/nmrihserver/_default.cfg b/lgsm/config-default/config-lgsm/nmrihserver/_default.cfg index 10d7696a6..fe6005c22 100644 --- a/lgsm/config-default/config-lgsm/nmrihserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/nmrihserver/_default.cfg @@ -92,7 +92,7 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## SteamCMD Settings @@ -107,6 +107,7 @@ branch="" # Do not edit gamename="No More Room in Hell" engine="source" +glibc="2.15" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/ns2cserver/_default.cfg b/lgsm/config-default/config-lgsm/ns2cserver/_default.cfg index f8de5a44c..f9dfaf640 100644 --- a/lgsm/config-default/config-lgsm/ns2cserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/ns2cserver/_default.cfg @@ -94,7 +94,7 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## SteamCMD Settings @@ -109,6 +109,7 @@ branch="" # Do not edit gamename="NS2: Combat" engine="spark" +glibc="2.15" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/ns2server/_default.cfg b/lgsm/config-default/config-lgsm/ns2server/_default.cfg index 2f7e602ca..9916e4fc6 100644 --- a/lgsm/config-default/config-lgsm/ns2server/_default.cfg +++ b/lgsm/config-default/config-lgsm/ns2server/_default.cfg @@ -98,7 +98,7 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## SteamCMD Settings @@ -113,6 +113,7 @@ branch="" # Do not edit gamename="Natural Selection 2" engine="spark" +glibc="2.17" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/nsserver/_default.cfg b/lgsm/config-default/config-lgsm/nsserver/_default.cfg index 1a5f8db9c..753bd99d3 100644 --- a/lgsm/config-default/config-lgsm/nsserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/nsserver/_default.cfg @@ -86,7 +86,7 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## SteamCMD Settings @@ -102,6 +102,7 @@ branch="" # Do not edit gamename="Natural Selection" engine="goldsource" +glibc="2.3.4" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/opforserver/_default.cfg b/lgsm/config-default/config-lgsm/opforserver/_default.cfg index 3618a40c1..e2e17db19 100644 --- a/lgsm/config-default/config-lgsm/opforserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/opforserver/_default.cfg @@ -86,7 +86,7 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## SteamCMD Settings @@ -102,6 +102,7 @@ branch="" # Do not edit gamename="Half-Life: Opposing Force" engine="goldsource" +glibc="2.3.4" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/pcserver/_default.cfg b/lgsm/config-default/config-lgsm/pcserver/_default.cfg index 8b0f7ce78..03eea31ce 100644 --- a/lgsm/config-default/config-lgsm/pcserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/pcserver/_default.cfg @@ -79,7 +79,7 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## SteamCMD Settings @@ -94,6 +94,7 @@ branch="" # Do not edit gamename="Project Cars" engine="madness" +glibc="2.4" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/pstbsserver/_default.cfg b/lgsm/config-default/config-lgsm/pstbsserver/_default.cfg index 3bb8dd0e4..3a0914658 100644 --- a/lgsm/config-default/config-lgsm/pstbsserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/pstbsserver/_default.cfg @@ -90,7 +90,7 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## SteamCMD Settings @@ -105,6 +105,7 @@ branch="" # Do not edit gamename="pstbsserver" engine="unreal4" +glibc="2.17" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/pvkiiserver/_default.cfg b/lgsm/config-default/config-lgsm/pvkiiserver/_default.cfg index 1a197d8f1..0acf99a18 100644 --- a/lgsm/config-default/config-lgsm/pvkiiserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/pvkiiserver/_default.cfg @@ -87,7 +87,7 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## SteamCMD Settings @@ -102,6 +102,7 @@ branch="" # Do not edit gamename="Pirates, Vikings, and Knights II" engine="source" +glibc="2.15" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/pzserver/_default.cfg b/lgsm/config-default/config-lgsm/pzserver/_default.cfg index 5aadad897..ffcce5488 100644 --- a/lgsm/config-default/config-lgsm/pzserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/pzserver/_default.cfg @@ -82,7 +82,7 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## SteamCMD Settings @@ -97,6 +97,7 @@ branch="" # Do not edit gamename="Project Zomboid" engine="projectzomboid" +glibc="2.15" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/q2server/_default.cfg b/lgsm/config-default/config-lgsm/q2server/_default.cfg index c109e7bcf..ea597b8ef 100644 --- a/lgsm/config-default/config-lgsm/q2server/_default.cfg +++ b/lgsm/config-default/config-lgsm/q2server/_default.cfg @@ -81,13 +81,14 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## LinuxGSM Server Details # Do not edit gamename="Quake 2" engine="idtech2" +glibc="null" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/q3server/_default.cfg b/lgsm/config-default/config-lgsm/q3server/_default.cfg index 89491a537..51c6aeed7 100644 --- a/lgsm/config-default/config-lgsm/q3server/_default.cfg +++ b/lgsm/config-default/config-lgsm/q3server/_default.cfg @@ -81,13 +81,14 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## LinuxGSM Server Details # Do not edit gamename="Quake 3: Arena" engine="idtech3" +glibc="2.1" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/qlserver/_default.cfg b/lgsm/config-default/config-lgsm/qlserver/_default.cfg index b4ac70336..31ea6ead8 100644 --- a/lgsm/config-default/config-lgsm/qlserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/qlserver/_default.cfg @@ -81,7 +81,7 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## SteamCMD Settings @@ -96,6 +96,7 @@ branch="" # Do not edit gamename="Quake Live" engine="idtech3_ql" +glibc="2.15" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/qwserver/_default.cfg b/lgsm/config-default/config-lgsm/qwserver/_default.cfg index dad680aa8..9a1abc2bd 100644 --- a/lgsm/config-default/config-lgsm/qwserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/qwserver/_default.cfg @@ -80,13 +80,14 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## LinuxGSM Server Details # Do not edit gamename="QuakeWorld" engine="quake" +glibc="2.17" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/ricochetserver/_default.cfg b/lgsm/config-default/config-lgsm/ricochetserver/_default.cfg index 1e4848403..477423b81 100644 --- a/lgsm/config-default/config-lgsm/ricochetserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/ricochetserver/_default.cfg @@ -86,7 +86,7 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## SteamCMD Settings @@ -102,6 +102,7 @@ branch="" # Do not edit gamename="Ricochet" engine="goldsource" +glibcr="2.3.4" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/roserver/_default.cfg b/lgsm/config-default/config-lgsm/roserver/_default.cfg index 6402a7c51..89865f281 100644 --- a/lgsm/config-default/config-lgsm/roserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/roserver/_default.cfg @@ -87,7 +87,7 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## SteamCMD Settings @@ -102,6 +102,7 @@ branch="" # Do not edit gamename="Red Orchestra: Ostfront 41-45" engine="unreal2" +glibc="2.4" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/rtcwserver/_default.cfg b/lgsm/config-default/config-lgsm/rtcwserver/_default.cfg index 2c753f26d..d875df5ca 100644 --- a/lgsm/config-default/config-lgsm/rtcwserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/rtcwserver/_default.cfg @@ -81,13 +81,14 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## LinuxGSM Server Details # Do not edit gamename="Return to Castle Wolfenstein" engine="ioquake3" +glibc="2.1" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/rustserver/_default.cfg b/lgsm/config-default/config-lgsm/rustserver/_default.cfg index b5e56db5b..1759a1c90 100644 --- a/lgsm/config-default/config-lgsm/rustserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/rustserver/_default.cfg @@ -111,7 +111,7 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## SteamCMD Settings @@ -126,6 +126,7 @@ branch="" # Do not edit gamename="Rust" engine="unity3d" +glibc="2.15" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/rwserver/_default.cfg b/lgsm/config-default/config-lgsm/rwserver/_default.cfg index 56d6d4526..eea0b712c 100644 --- a/lgsm/config-default/config-lgsm/rwserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/rwserver/_default.cfg @@ -82,7 +82,7 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## SteamCMD Settings @@ -97,6 +97,7 @@ branch="" # Do not edit gamename="Rising World" engine="risingworld" +glibc="null" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/sampserver/_default.cfg b/lgsm/config-default/config-lgsm/sampserver/_default.cfg index 40a49ae93..1f878023b 100644 --- a/lgsm/config-default/config-lgsm/sampserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/sampserver/_default.cfg @@ -80,13 +80,14 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## LinuxGSM Server Details # Do not edit gamename="San Andreas Multiplayer" engine="renderware" +glibc="2.3" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/sbotsserver/_default.cfg b/lgsm/config-default/config-lgsm/sbotsserver/_default.cfg index 61ad1d74b..38a04f459 100644 --- a/lgsm/config-default/config-lgsm/sbotsserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/sbotsserver/_default.cfg @@ -84,7 +84,7 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## SteamCMD Settings @@ -99,6 +99,7 @@ branch="" # Do not edit gamename="StickyBots" engine="unreal4" +glibc="2.17" #### Directories #### # Edit with care @@ -127,4 +128,4 @@ postdetailslog="${lgsmlogdir}/${servicename}-postdetails.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" diff --git a/lgsm/config-default/config-lgsm/sbserver/_default.cfg b/lgsm/config-default/config-lgsm/sbserver/_default.cfg index 8026983fe..8b0df872a 100644 --- a/lgsm/config-default/config-lgsm/sbserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/sbserver/_default.cfg @@ -86,7 +86,7 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## SteamCMD Settings @@ -101,6 +101,7 @@ branch="" # Do not edit gamename="Starbound" engine="starbound" +glibc="2.17" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/sdtdserver/_default.cfg b/lgsm/config-default/config-lgsm/sdtdserver/_default.cfg index b1d94ee0f..d56f05a5a 100644 --- a/lgsm/config-default/config-lgsm/sdtdserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/sdtdserver/_default.cfg @@ -82,7 +82,7 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## SteamCMD Settings @@ -97,6 +97,7 @@ branch="" # Do not edit gamename="7 Days To Die" engine="unity3d" +glibc="2.15" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/sof2server/_default.cfg b/lgsm/config-default/config-lgsm/sof2server/_default.cfg index cb35b339c..d0e5dc776 100644 --- a/lgsm/config-default/config-lgsm/sof2server/_default.cfg +++ b/lgsm/config-default/config-lgsm/sof2server/_default.cfg @@ -88,6 +88,7 @@ sleeptime="0.5" # Do not edit gamename="Soldier Of Fortune 2: Gold Edition" engine="idtech3" +glibc="2.1" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/squadserver/_default.cfg b/lgsm/config-default/config-lgsm/squadserver/_default.cfg index 1d82936e5..075f3d940 100644 --- a/lgsm/config-default/config-lgsm/squadserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/squadserver/_default.cfg @@ -84,7 +84,7 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## SteamCMD Settings @@ -99,6 +99,7 @@ branch="" # Do not edit gamename="Squad" engine="unreal4" +glibc="2.17" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/ss3server/_default.cfg b/lgsm/config-default/config-lgsm/ss3server/_default.cfg index 8a79c7954..54f2dc817 100644 --- a/lgsm/config-default/config-lgsm/ss3server/_default.cfg +++ b/lgsm/config-default/config-lgsm/ss3server/_default.cfg @@ -83,7 +83,7 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## SteamCMD Settings @@ -98,6 +98,7 @@ branch="" # Do not edit gamename="Serious Sam 3: BFE" engine="seriousengine35" +glibc="2.13" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/stserver/_default.cfg b/lgsm/config-default/config-lgsm/stserver/_default.cfg index 9492cb311..856a2b639 100644 --- a/lgsm/config-default/config-lgsm/stserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/stserver/_default.cfg @@ -89,7 +89,7 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## SteamCMD Settings @@ -104,6 +104,7 @@ branch="" # Do not edit gamename="Stationeers" engine="unity3d" +glibc="2.15" #### Directories #### # Edit with care @@ -133,4 +134,3 @@ postdetailslog="${lgsmlogdir}/${servicename}-postdetails.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" - diff --git a/lgsm/config-default/config-lgsm/svenserver/_default.cfg b/lgsm/config-default/config-lgsm/svenserver/_default.cfg index dd434be27..f938b7773 100644 --- a/lgsm/config-default/config-lgsm/svenserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/svenserver/_default.cfg @@ -86,7 +86,7 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## SteamCMD Settings @@ -101,6 +101,7 @@ branch="" # Do not edit gamename="Sven Co-op" engine="goldsource" +glibc="2.24" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/terrariaserver/_default.cfg b/lgsm/config-default/config-lgsm/terrariaserver/_default.cfg index a099b3fb2..3d260389f 100644 --- a/lgsm/config-default/config-lgsm/terrariaserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/terrariaserver/_default.cfg @@ -86,7 +86,7 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## SteamCMD Settings @@ -101,6 +101,7 @@ branch="" # Do not edit gamename="Terraria" engine="terraria" +glibc="2.7" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/tf2server/_default.cfg b/lgsm/config-default/config-lgsm/tf2server/_default.cfg index e0a429d99..d9ab34b4a 100644 --- a/lgsm/config-default/config-lgsm/tf2server/_default.cfg +++ b/lgsm/config-default/config-lgsm/tf2server/_default.cfg @@ -92,7 +92,7 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## SteamCMD Settings @@ -107,6 +107,7 @@ branch="" # Do not edit gamename="Team Fortress 2" engine="source" +glibc="2.15" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/tfcserver/_default.cfg b/lgsm/config-default/config-lgsm/tfcserver/_default.cfg index 5f2184566..297268e83 100644 --- a/lgsm/config-default/config-lgsm/tfcserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/tfcserver/_default.cfg @@ -86,7 +86,7 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## SteamCMD Settings @@ -102,6 +102,7 @@ branch="" # Do not edit gamename="Team Fortress Classic" engine="goldsource" +glibc="2.3.4" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/ts3server/_default.cfg b/lgsm/config-default/config-lgsm/ts3server/_default.cfg index 66787fc67..03a6f47e5 100644 --- a/lgsm/config-default/config-lgsm/ts3server/_default.cfg +++ b/lgsm/config-default/config-lgsm/ts3server/_default.cfg @@ -75,13 +75,15 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## LinuxGSM Server Details # Do not edit gamename="TeamSpeak 3" servername="TeamSpeak 3 Server" +engine="null" +glibc="null" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/tuserver/_default.cfg b/lgsm/config-default/config-lgsm/tuserver/_default.cfg index 6764131da..42019c23a 100644 --- a/lgsm/config-default/config-lgsm/tuserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/tuserver/_default.cfg @@ -89,7 +89,7 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## SteamCMD Settings @@ -104,6 +104,7 @@ branch="" # Do not edit gamename="Tower Unite" engine="unreal4" +glibc="2.17" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/twserver/_default.cfg b/lgsm/config-default/config-lgsm/twserver/_default.cfg index eee3683c5..f9c8ebdda 100644 --- a/lgsm/config-default/config-lgsm/twserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/twserver/_default.cfg @@ -86,7 +86,7 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## SteamCMD Settings @@ -101,6 +101,7 @@ branch="" # Do not edit gamename="Teeworlds" engine="teeworlds" +glibc="2.14" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/untserver/_default.cfg b/lgsm/config-default/config-lgsm/untserver/_default.cfg index b6cbf28a5..aba9cc558 100644 --- a/lgsm/config-default/config-lgsm/untserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/untserver/_default.cfg @@ -93,7 +93,7 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## SteamCMD Settings @@ -108,6 +108,7 @@ branch="" # Do not edit gamename="Unturned" engine="unity3d" +glibc="2.15" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/ut2k4server/_default.cfg b/lgsm/config-default/config-lgsm/ut2k4server/_default.cfg index 8f5475533..af9e9d630 100644 --- a/lgsm/config-default/config-lgsm/ut2k4server/_default.cfg +++ b/lgsm/config-default/config-lgsm/ut2k4server/_default.cfg @@ -80,13 +80,14 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## LinuxGSM Server Details # Do not edit gamename="Unreal Tournament 2004" engine="unreal2" +glibc="2.4" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/ut3server/_default.cfg b/lgsm/config-default/config-lgsm/ut3server/_default.cfg index 3c001c769..3606d79ec 100644 --- a/lgsm/config-default/config-lgsm/ut3server/_default.cfg +++ b/lgsm/config-default/config-lgsm/ut3server/_default.cfg @@ -91,13 +91,14 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## LinuxGSM Server Details # Do not edit gamename="Unreal Tournament 3" engine="unreal3" +glibc="2.3.2" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/ut99server/_default.cfg b/lgsm/config-default/config-lgsm/ut99server/_default.cfg index f69c5b7d3..627a4bdf4 100644 --- a/lgsm/config-default/config-lgsm/ut99server/_default.cfg +++ b/lgsm/config-default/config-lgsm/ut99server/_default.cfg @@ -80,13 +80,14 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## LinuxGSM Server Details # Do not edit gamename="Unreal Tournament 99" engine="unreal" +glibc="2.1" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/utserver/_default.cfg b/lgsm/config-default/config-lgsm/utserver/_default.cfg index 32ed512e4..6bda1840b 100644 --- a/lgsm/config-default/config-lgsm/utserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/utserver/_default.cfg @@ -84,13 +84,14 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## LinuxGSM Server Details # Do not edit gamename="Unreal Tournament" engine="unreal4" +glibc="2.17" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/vsserver/_default.cfg b/lgsm/config-default/config-lgsm/vsserver/_default.cfg index ee0fcbbb4..1b8323999 100644 --- a/lgsm/config-default/config-lgsm/vsserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/vsserver/_default.cfg @@ -86,7 +86,7 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## SteamCMD Settings @@ -102,6 +102,7 @@ branch="" # Do not edit gamename="Vampire Slayer" engine="goldsource" +glibc="2.3.4" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/wetserver/_default.cfg b/lgsm/config-default/config-lgsm/wetserver/_default.cfg index 64032b699..8c063de0a 100644 --- a/lgsm/config-default/config-lgsm/wetserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/wetserver/_default.cfg @@ -76,13 +76,14 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## LinuxGSM Server Details # Do not edit gamename="Wolfenstein: Enemy Territory" engine="idtech3" +glibc="2.2.4" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/wurmserver/_default.cfg b/lgsm/config-default/config-lgsm/wurmserver/_default.cfg index 479c6eebc..769621fd6 100644 --- a/lgsm/config-default/config-lgsm/wurmserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/wurmserver/_default.cfg @@ -78,7 +78,7 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## SteamCMD Settings @@ -93,6 +93,7 @@ branch="" # Do not edit gamename="Wurm Unlimited" engine="wurm" +glibc="2.14" #### Directories #### # Edit with care diff --git a/lgsm/config-default/config-lgsm/zpsserver/_default.cfg b/lgsm/config-default/config-lgsm/zpsserver/_default.cfg index 41f892663..d412eca0a 100644 --- a/lgsm/config-default/config-lgsm/zpsserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/zpsserver/_default.cfg @@ -92,7 +92,7 @@ logdays="7" # ANSI Colors ansi="on" -# Message Display Time +# Message Display Time sleeptime="0.5" ## SteamCMD Settings @@ -107,6 +107,7 @@ branch="" # Do not edit gamename="Zombie Panic! Source" engine="source" +glibc="2.15" #### Directories #### # Edit with care diff --git a/lgsm/functions/alert.sh b/lgsm/functions/alert.sh index 508c704a6..3a7bf2604 100644 --- a/lgsm/functions/alert.sh +++ b/lgsm/functions/alert.sh @@ -10,7 +10,6 @@ local commandaction="Alert" fn_alert_log(){ info_distro.sh info_config.sh - info_glibc.sh info_messages.sh if [ -f "${alertlog}" ]; then rm "${alertlog}" @@ -190,4 +189,4 @@ elif [ -z "${telegramchatid}" ]&&[ "${function_selfname}" == "command_test_alert fn_print_error_nl "Telegram chat id not set." echo " * https://docs.linuxgsm.com/alerts/telegram" fn_script_error "Telegram chat id not set." -fi \ No newline at end of file +fi diff --git a/lgsm/functions/check_glibc.sh b/lgsm/functions/check_glibc.sh index 7abf46dd1..4ff80b84b 100644 --- a/lgsm/functions/check_glibc.sh +++ b/lgsm/functions/check_glibc.sh @@ -2,21 +2,27 @@ # LinuxGSM check_glibc.sh function # Author: Daniel Gibbs # Website: https://linuxgsm.com -# Description: Checks if the server has the correct Glibc version or a fix available. +# Description: Checks if the server has the correct Glibc version. local commandname="CHECK" -info_glibc.sh info_distro.sh -if [ "${glibcrequired}" == "NOT REQUIRED" ]; then +if [ "${glibc}" == "null" ]; then + # Glibc is not required. : -elif [ "$(printf '%s\n'${glibcrequired}'\n' "${glibcversion}" | sort -V | head -n 1)" != "${glibcrequired}" ]||[ "${glibcrequired}" == "UNKNOWN" ]; then - fn_print_dots "Glibc" - fn_print_error_nl "glibc: ${red}glibc distro version ${glibcversion} too old${default}" +elif [ -z "${glibc}" ]; then + fn_print_dots "glibc" + fn_print_error_nl "glibc requirement unknown" + fn_script_log_error "glibc requirement unknown" +elif [ "$(printf '%s\n'${glibc}'\n' "${glibcversion}" | sort -V | head -n 1)" != "${glibc}" ]; then + fn_print_dots "glibc" + fn_print_error_nl "glibc requirements not met" + fn_script_log_error "glibc requirements not met" echo -en "\n" - echo -e " * glibc required: ${glibcrequired}" + echo -e " * glibc required: ${glibc}" echo -e " * glibc installed: ${red}${glibcversion}${default}" echo -en "\n" - fn_print_information "The game server will probably not work. A distro upgrade is required!" + fn_print_information_nl "distro upgrade is required" + fn_script_log_info "distro upgrade is required" fi diff --git a/lgsm/functions/command_debug.sh b/lgsm/functions/command_debug.sh index 1ae89fb94..668c07b2b 100644 --- a/lgsm/functions/command_debug.sh +++ b/lgsm/functions/command_debug.sh @@ -34,18 +34,21 @@ echo -e "${blue}tmux:\t${default}${tmuxv}" echo -e "${blue}Avg Load:\t${default}${load}" echo -e "${blue}Free Memory:\t${default}${physmemfree}" echo -e "${blue}Free Disk:\t${default}${availspace}" + # glibc required -if [ -n "${glibcrequired}" ]; then - if [ "${glibcrequired}" == "NOT REQUIRED" ]; then - : - elif [ "${glibcrequired}" == "UNKNOWN" ]; then - echo -e "${blue}glibc required:\t${red}${glibcrequired}" - elif [ "$(printf '%s\n'${glibcrequired}'\n' "${glibcversion}" | sort -V | head -n 1)" != "${glibcrequired}" ]; then - echo -e "${blue}glibc required:\t${red}${glibcrequired} ${default}(${red}glibc distro version ${glibcversion} too old${default})" +if [ -n "${glibc}" ]; then + if [ "${glibc}" == "null" ]; then + # Glibc is not required. + : + elif [ -z "${glibc}" ]; then + echo -e "${blue}glibc required:\t${red}UNKNOWN${default}" + elif [ "$(printf '%s\n'${glibc}'\n' ${glibcversion} | sort -V | head -n 1)" != "${glibc}" ]; then + echo -e "${blue}glibc required:\t${red}${glibc} ${default}(${red}distro glibc ${glibcversion} too old${default})" else - echo -e "${blue}glibc required:\t${green}${glibcrequired}${default}" + echo -e "${blue}glibc required:\t${green}${glibc}${default}" fi fi + # Server ip if [ "${multiple_ip}" == "1" ]; then echo -e "${blue}Server IP:\t${default}NOT SET" diff --git a/lgsm/functions/command_details.sh b/lgsm/functions/command_details.sh index 4b11d0658..f70361d50 100644 --- a/lgsm/functions/command_details.sh +++ b/lgsm/functions/command_details.sh @@ -14,7 +14,6 @@ check.sh info_config.sh info_parms.sh info_distro.sh -info_glibc.sh info_messages.sh query_gamedig.sh fn_info_message_distro @@ -32,4 +31,3 @@ fn_info_message_ports fn_info_message_select_engine fn_info_message_statusbottom core_exit.sh - diff --git a/lgsm/functions/command_postdetails.sh b/lgsm/functions/command_postdetails.sh index 4b34c9f39..50dc4798f 100644 --- a/lgsm/functions/command_postdetails.sh +++ b/lgsm/functions/command_postdetails.sh @@ -56,7 +56,6 @@ else info_config.sh info_parms.sh info_distro.sh - info_glibc.sh info_messages.sh query_gamedig.sh touch "${postdetailslog}" || fn_bad_postdetailslog diff --git a/lgsm/functions/core_functions.sh b/lgsm/functions/core_functions.sh index e8346dae1..af1e933e0 100644 --- a/lgsm/functions/core_functions.sh +++ b/lgsm/functions/core_functions.sh @@ -51,7 +51,6 @@ fn_fetch_function # Commands - command_backup.sh(){ functionfile="${FUNCNAME}" fn_fetch_function @@ -434,15 +433,11 @@ functionfile="${FUNCNAME}" fn_fetch_function } -info_glibc.sh(){ -functionfile="${FUNCNAME}" -fn_fetch_function -} - info_messages.sh(){ functionfile="${FUNCNAME}" fn_fetch_function } + info_parms.sh(){ functionfile="${FUNCNAME}" fn_fetch_function diff --git a/lgsm/functions/info_distro.sh b/lgsm/functions/info_distro.sh index 11ab3149d..d343459dc 100644 --- a/lgsm/functions/info_distro.sh +++ b/lgsm/functions/info_distro.sh @@ -235,3 +235,10 @@ if [ ! "$(command -v jq 2>/dev/null)" ]; then fi fi fi + +# Sets the SteamCMD glibc requirement if the game server requirement is less or not required. +if [ -n "${appid}" ]; then + if [ "${glibc}" = "null" ]||[ -z "${glibc}" ]||[ "$(printf '%s\n'${glibc}'\n' "2.14" | sort -V | head -n 1)" != "2.14" ]; then + glibc="2.14" + fi +fi diff --git a/lgsm/functions/info_glibc.sh b/lgsm/functions/info_glibc.sh deleted file mode 100644 index b82140b24..000000000 --- a/lgsm/functions/info_glibc.sh +++ /dev/null @@ -1,236 +0,0 @@ -#!/bin/bash -# LinuxGSM info_glibc.sh function -# Author: Daniel Gibbs -# Website: https://linuxgsm.com -# Description: Stores details on servers Glibc requirements. - -local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" - -if [ "${gamename}" == "ARK: Survival Evolved" ]; then - glibcrequired="2.15" - glibcfix="no" -elif [ "${gamename}" == "Ballistic Overkill" ]; then - glibcrequired="2.15" - glibcfix="yes" -elif [ "${gamename}" == "Base Defense" ]; then - glibcrequired="2.14" - glibcfix="no" -elif [ "${gamename}" == "Black Mesa: Deathmatch" ]; then - glibcrequired="2.15" - glibcfix="yes" -elif [ "${gamename}" == "Blade Symphony" ]; then - glibcrequired="2.15" - glibcfix="yes" -elif [ "${gamename}" == "BrainBread 2" ]; then - glibcrequired="2.17" - glibcfix="no" -elif [ "${gamename}" == "Call of Duty" ]; then - glibcrequired="2.1" - glibcfix="no" -elif [ "${gamename}" == "Call of Duty 2" ]; then - glibcrequired="2.1.3" - glibcfix="no" -elif [ "${gamename}" == "Call of Duty: United Offensive" ]; then - glibcrequired="2.1" - glibcfix="no" -elif [ "${gamename}" == "Call of Duty 4" ]; then - glibcrequired="2.3" - glibcfix="no" -elif [ "${gamename}" == "Call of Duty: World at War" ]; then - glibcrequired="2.3.2" - glibcfix="no" -elif [ "${gamename}" == "Codename CURE" ]; then - glibcrequired="2.15" - glibcfix="yes" -elif [ "${gamename}" == "Counter-Strike: Global Offensive" ]; then - glibcrequired="2.15" - glibcfix="yes" -elif [ "${gamename}" == "Day of Infamy" ]; then - glibcrequired="2.15" - glibcfix="yes" -elif [ "${gamename}" == "Double Action: Boogaloo" ]; then - glibcrequired="2.15" - glibcfix="yes" -elif [ "${gamename}" == "Dystopia" ]; then - glibcrequired="2.15" - glibcfix="no" -elif [ "${gamename}" == "Eco" ]; then - glibcrequired="NOT REQUIRED" - glibcfix="no" -elif [ "${gamename}" == "Empires Mod" ]; then - glibcrequired="2.15" - glibcfix="yes" -elif [ "${gamename}" == "Factorio" ]; then - glibcrequired="2.18" - glibcfix="yes" -elif [ "${gamename}" == "Fistful of Frags" ]; then - glibcrequired="2.15" - glibcfix="yes" -elif [ "${gamename}" == "Garry's Mod" ]; then - glibcrequired="2.15" - glibcfix="yes" -elif [ "${gamename}" == "GoldenEye: Source" ]; then - glibcrequired="2.15" - glibcfix="yes" -elif [ "${gamename}" == "Insurgency" ]; then - glibcrequired="2.15" - glibcfix="yes" -elif [ "${shortname}" == "kf2" ]; then - glibcrequired="2.17" - glibcfix="no" -elif [ "${shortname}" == "tu" ]; then - glibcrequired="2.15" - glibcfix="no" -elif [ "${gamename}" == "Mumble" ]; then - glibcrequired="NOT REQUIRED" - glibcfix="no" -elif [ "${gamename}" == "No More Room in Hell" ]; then - glibcrequired="2.15" - glibcfix="yes" -elif [ "${gamename}" == "Project Cars" ]; then - glibcrequired="2.4" - glibcfix="no" -elif [ "${gamename}" == "Pirates, Vikings, and Knights II" ]; then - glibcrequired="2.15" - glibcfix="yes" -elif [ "${shortname}" == "pstbs" ]; then - glibcrequired="2.17" - glibcfix="no" -elif [ "${gamename}" == "Quake 2" ]; then - glibcrequired="NOT REQUIRED" - glibcfix="no" -elif [ "${gamename}" == "Quake 3: Arena" ]; then - glibcrequired="2.1" - glibcfix="no" -elif [ "${gamename}" == "Quake Live" ]; then - glibcrequired="2.15" - glibcfix="no" -elif [ "${gamename}" == "Return to Castle Wolfenstein" ]; then - glibcrequired="2.1" - glibcfix="no" -elif [ "${shortname}" == "rw" ]; then - glibcrequired="2.14" - glibcfix="no" -elif [ "${gamename}" == "Soldier Of Fortune 2: Gold Edition" ]; then - glibcrequired="2.1" - glibcfix="no" -elif [ "${gamename}" == "San Andreas Multiplayer" ]; then - glibcrequired="2.3" - glibcfix="no" -elif [ "${gamename}" == "Squad" ]; then - glibcrequired="2.17" - glibcfix="no" -elif [ "${gamename}" == "Sven Co-op" ]; then - glibcrequired="2.24" - glibcfix="no" -elif [ "${shortname}" == "sbots" ]; then - glibcrequired="2.17" - glibcfix="no" -elif [ "${gamename}" == "Team Fortress 2" ]; then - glibcrequired="2.15" - glibcfix="yes" -elif [ "${gamename}" == "TeamSpeak 3" ]; then - glibcrequired="NOT REQUIRED" - glibcfix="no" -elif [ "${gamename}" == "Teeworlds" ]; then - glibcrequired="2.14" - glibcfix="no" -elif [ "${gamename}" == "Just Cause 2" ]; then - glibcrequired="2.13" - glibcfix="yes" -elif [ "${gamename}" == "Just Cause 3" ]; then - glibcrequired="2.17" - glibcfix="no" -elif [ "${gamename}" == "Natural Selection 2" ]; then - glibcrequired="2.17" - glibcfix="no" -elif [ "${gamename}" == "NS2: Combat" ]; then - glibcrequired="2.15" - glibcfix="yes" -elif [ "${gamename}" == "TeamSpeak 3" ]; then - glibcrequired="NOT REQUIRED" - glibcfix="no" -elif [ "${gamename}" == "MORDHAU" ]; then - glibcrequired="2.17" - glibcfix="no" -elif [ "${gamename}" == "Mumble" ]; then - glibcrequired="NOT REQUIRED" - glibcfix="no" -elif [ "${engine}" == "refractor" ]; then - glibcrequired="2.0" - glibcfix="no" -elif [ "${gamename}" == "Wolfenstein: Enemy Territory" ]; then - glibcrequired="2.2.4" - glibcfix="no" -elif [ "${gamename}" == "ET: Legacy" ]; then - glibcrequired="2.7" - glibcfix="no" -elif [ "${gamename}" == "Wurm Unlimited" ]; then - glibcrequired="2.14" - glibcfix="no" -elif [ "${gamename}" == "Multi Theft Auto" ]; then - glibcrequired="2.7" - glibcfix="no" -elif [ "${gamename}" == "Unturned" ]; then - glibcrequired="2.15" - glibcfix="no" -elif [ "${gamename}" == "Zombie Panic! Source" ]; then - glibcrequired="2.15" - glibcfix="yes" -elif [ "${engine}" == "starbound" ]; then - glibcrequired="2.17" - glibcfix="no" -elif [ "${engine}" == "quake" ]; then - glibcrequired="2.0" - glibcfix="no" -elif [ "${engine}" == "terraria" ]; then - glibcrequired="2.7" - glibcfix="no" -elif [ "${engine}" == "unreal" ]; then - glibcrequired="2.1" - glibcfix="no" -elif [ "${engine}" == "unreal2" ]; then - glibcrequired="2.4" - glibcfix="no" -elif [ "${engine}" == "unreal3" ]; then - glibcrequired="2.3.2" - glibcfix="no" -elif [ "${engine}" == "unreal4" ]; then - glibcrequired="2.17" - glibcfix="no" -elif [ "${engine}" == "unity3d" ]; then - glibcrequired="2.15" - glibcfix="no" -elif [ "${engine}" == "dontstarve" ]; then - glibcrequired="2.15" - glibcfix="no" -elif [ "${engine}" == "lwjgl2" ]; then - glibcrequired="NOT REQUIRED" - glibcfix="no" -elif [ "${engine}" == "projectzomboid" ]; then - glibcrequired="2.15" - glibcfix="no" -elif [ "${engine}" == "realvirtuality" ]; then - glibcrequired="2.13" - glibcfix="yes" -elif [ "${engine}" == "seriousengine35" ]; then - glibcrequired="2.13" - glibcfix="yes" -elif [ "${engine}" == "source" ]; then - glibcrequired="2.3.6" - glibcfix="no" -elif [ "${engine}" == "goldsource" ]; then - glibcrequired="2.3.4" - glibcfix="no" -else - glibcrequired="UNKNOWN" - glibcfix="no" -fi - -# Sets the SteamCMD glibc requirement if the game server requirement is less or not required. -if [ -n "${appid}" ]; then - if [ "${glibcrequired}" = "NOT REQUIRED" ]||[ -z "${glibcrequired}" ]||[ "$(printf '%s\n'${glibcrequired}'\n' "2.14" | sort -V | head -n 1)" != "2.14" ]; then - glibcrequired="2.14" - glibcfix="no" - fi -fi diff --git a/lgsm/functions/info_messages.sh b/lgsm/functions/info_messages.sh index a5cb8bce1..4c1b960c4 100644 --- a/lgsm/functions/info_messages.sh +++ b/lgsm/functions/info_messages.sh @@ -369,15 +369,16 @@ fn_info_message_script(){ echo -e "${blue}User:\t${default}$(whoami)" # glibc required - if [ -n "${glibcrequired}" ]; then - if [ "${glibcrequired}" == "NOT REQUIRED" ]; then - : - elif [ "${glibcrequired}" == "UNKNOWN" ]; then - echo -e "${blue}glibc required:\t${red}${glibcrequired}" - elif [ "$(printf '%s\n'${glibcrequired}'\n' ${glibcversion} | sort -V | head -n 1)" != "${glibcrequired}" ]; then - echo -e "${blue}glibc required:\t${red}${glibcrequired} ${default}(${red}glibc distro version ${glibcversion} too old${default})" + if [ -n "${glibc}" ]; then + if [ "${glibc}" == "null" ]; then + # Glibc is not required. + : + elif [ -z "${glibc}" ]; then + echo -e "${blue}glibc required:\t${red}UNKNOWN${default}" + elif [ "$(printf '%s\n'${glibc}'\n' ${glibcversion} | sort -V | head -n 1)" != "${glibc}" ]; then + echo -e "${blue}glibc required:\t${red}${glibc} ${default}(${red}distro glibc ${glibcversion} too old${default})" else - echo -e "${blue}glibc required:\t${green}${glibcrequired}${default}" + echo -e "${blue}glibc required:\t${green}${glibc}${default}" fi fi From fc0580fbba197b8adcb4f37a2572d92d387b0ef3 Mon Sep 17 00:00:00 2001 From: Christian Date: Mon, 10 Jun 2019 19:04:46 +0200 Subject: [PATCH 09/20] fix(ts3server): ts3 now requires glibc (#2387) Co-authored-by: Christian Birk --- lgsm/config-default/config-lgsm/ts3server/_default.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/config-default/config-lgsm/ts3server/_default.cfg b/lgsm/config-default/config-lgsm/ts3server/_default.cfg index 03a6f47e5..871fe71bc 100644 --- a/lgsm/config-default/config-lgsm/ts3server/_default.cfg +++ b/lgsm/config-default/config-lgsm/ts3server/_default.cfg @@ -83,7 +83,7 @@ sleeptime="0.5" gamename="TeamSpeak 3" servername="TeamSpeak 3 Server" engine="null" -glibc="null" +glibc="2.17" #### Directories #### # Edit with care From 62cb12f6f6d6ce00106b9006bac0657d9f5cfbb5 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Mon, 10 Jun 2019 22:38:17 +0100 Subject: [PATCH 10/20] refactor of pull request template --- .../ISSUE_TEMPLATE/PULL_REQUEST_TEMPLATE.md | 22 +++++++++++++------ 1 file changed, 15 insertions(+), 7 deletions(-) rename PULL_REQUEST_TEMPLATE.md => .github/ISSUE_TEMPLATE/PULL_REQUEST_TEMPLATE.md (68%) diff --git a/PULL_REQUEST_TEMPLATE.md b/.github/ISSUE_TEMPLATE/PULL_REQUEST_TEMPLATE.md similarity index 68% rename from PULL_REQUEST_TEMPLATE.md rename to .github/ISSUE_TEMPLATE/PULL_REQUEST_TEMPLATE.md index 749aadeed..8c40ff457 100644 --- a/PULL_REQUEST_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE/PULL_REQUEST_TEMPLATE.md @@ -1,6 +1,6 @@ # Description -Please include a summary of the change and which issue is fixed. +Please include a summary of the change and which issues is fixed Fixes #[issue] @@ -11,18 +11,19 @@ Fixes #[issue] * [ ] New Server (new server added). * [ ] Refactor (restructures existing code). * [ ] Comment update (typo, spelling, explanation, examples, etc). -* [ ] This change requires a documentation update. ## Checklist -* [ ] This code follows the style guidelines of this project. +PR will not be merged until all steps are complete. + * [ ] This pull request links to an issue. * [ ] This pull request uses the `develop` branch as its base. +* [ ] This code follows the style guidelines of this project. * [ ] I have provided Co-author details below. * [ ] I have performed a self-review of my own code. -* [ ] I have squashed commits. -* [ ] I have commented my code, particularly in hard to understand areas. -* [ ] I have made corresponding changes to the documentation if required. +* [ ] I have checked that this code is commented where required. +* [ ] I have provided a detailed enough description of this PR. +* [ ] I have checked If documentation needs updating. ## Provide Github Email @@ -33,8 +34,15 @@ Co-authored-by: John Doe - [ ] I do not wish to provide an email. I am aware this will hide me as the author of this commit. - All pull requests will now be squashed to create a tidy commit history and simplify changelog creation. You can provide either your own email or a GitHub-provided no-reply email. When a PR is squashed the author becomes the person who squashed the PR. This removes you as the author of your own PR. The only workaround for this is to add your details as a co-author. More info about co-authors can be found [here](https://help.github.com/en/articles/creating-a-commit-with-multiple-authors). + +## Documentation + +If documentation does need updating either update it by creating a PR (preferred) or request a documentation update. +* User docs: https://github.com/GameServerManagers/LinuxGSM-Docs +* Dev docs: https://github.com/GameServerManagers/LinuxGSM-Dev-Docs + +**Thank you for your Pull Request!** From 389cbe727552fe25eee0cf83b989da587ed799d7 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Tue, 11 Jun 2019 18:51:46 +0100 Subject: [PATCH 11/20] feat(details): add steam master server setting (#2385) This new feature will confirm if supported game servers are listed on the steam master server. --- .../config-lgsm/arkserver/_default.cfg | 6 +++--- .../config-lgsm/arma3server/_default.cfg | 6 +++--- .../config-lgsm/bb2server/_default.cfg | 6 +++--- .../config-lgsm/bbserver/_default.cfg | 6 +++--- .../config-lgsm/bdserver/_default.cfg | 4 ++++ .../config-lgsm/bmdmserver/_default.cfg | 6 +++--- .../config-lgsm/boserver/_default.cfg | 8 ++++---- .../config-lgsm/bsserver/_default.cfg | 6 +++--- .../config-lgsm/bt1944server/_default.cfg | 6 +++--- .../config-lgsm/ccserver/_default.cfg | 6 +++--- .../config-lgsm/csczserver/_default.cfg | 6 +++--- .../config-lgsm/csgoserver/_default.cfg | 6 +++--- .../config-lgsm/csserver/_default.cfg | 6 +++--- .../config-lgsm/cssserver/_default.cfg | 6 +++--- .../config-lgsm/dabserver/_default.cfg | 6 +++--- .../config-lgsm/dmcserver/_default.cfg | 6 +++--- .../config-lgsm/dodserver/_default.cfg | 6 +++--- .../config-lgsm/dodsserver/_default.cfg | 6 +++--- .../config-lgsm/doiserver/_default.cfg | 6 +++--- .../config-lgsm/dstserver/_default.cfg | 6 +++--- .../config-lgsm/dysserver/_default.cfg | 6 +++--- .../config-lgsm/ecoserver/_default.cfg | 6 +++--- .../config-lgsm/emserver/_default.cfg | 6 +++--- .../config-lgsm/fofserver/_default.cfg | 6 +++--- .../config-lgsm/gesserver/_default.cfg | 6 +++--- .../config-lgsm/gmodserver/_default.cfg | 6 +++--- .../config-lgsm/hl2dmserver/_default.cfg | 6 +++--- .../config-lgsm/hldmserver/_default.cfg | 6 +++--- .../config-lgsm/hldmsserver/_default.cfg | 6 +++--- .../config-lgsm/hwserver/_default.cfg | 6 +++--- .../config-lgsm/insserver/_default.cfg | 6 +++--- .../config-lgsm/inssserver/_default.cfg | 6 +++--- .../config-lgsm/iosserver/_default.cfg | 6 +++--- .../config-lgsm/jc2server/_default.cfg | 6 +++--- .../config-lgsm/jc3server/_default.cfg | 6 +++--- .../config-lgsm/kf2server/_default.cfg | 6 +++--- .../config-lgsm/kfserver/_default.cfg | 6 +++--- .../config-lgsm/l4d2server/_default.cfg | 6 +++--- .../config-lgsm/l4dserver/_default.cfg | 6 +++--- .../config-lgsm/mhserver/_default.cfg | 6 +++--- .../config-lgsm/ndserver/_default.cfg | 6 +++--- .../config-lgsm/nmrihserver/_default.cfg | 6 +++--- .../config-lgsm/ns2cserver/_default.cfg | 6 +++--- .../config-lgsm/ns2server/_default.cfg | 6 +++--- .../config-lgsm/nsserver/_default.cfg | 6 +++--- .../config-lgsm/opforserver/_default.cfg | 6 +++--- .../config-lgsm/pcserver/_default.cfg | 6 +++--- .../config-lgsm/pstbsserver/_default.cfg | 6 +++--- .../config-lgsm/pvkiiserver/_default.cfg | 6 +++--- .../config-lgsm/pzserver/_default.cfg | 6 +++--- .../config-lgsm/qlserver/_default.cfg | 6 +++--- .../config-lgsm/ricochetserver/_default.cfg | 6 +++--- .../config-lgsm/roserver/_default.cfg | 6 +++--- .../config-lgsm/rustserver/_default.cfg | 6 +++--- .../config-lgsm/rwserver/_default.cfg | 6 +++--- .../config-lgsm/sbotsserver/_default.cfg | 6 +++--- .../config-lgsm/sbserver/_default.cfg | 5 ++--- .../config-lgsm/sdtdserver/_default.cfg | 6 +++--- .../config-lgsm/squadserver/_default.cfg | 6 +++--- .../config-lgsm/ss3server/_default.cfg | 6 +++--- .../config-lgsm/stserver/_default.cfg | 6 +++--- .../config-lgsm/svenserver/_default.cfg | 6 +++--- .../config-lgsm/terrariaserver/_default.cfg | 6 +++--- .../config-lgsm/tf2server/_default.cfg | 6 +++--- .../config-lgsm/tfcserver/_default.cfg | 6 +++--- .../config-lgsm/tuserver/_default.cfg | 6 +++--- .../config-lgsm/twserver/_default.cfg | 6 +++--- .../config-lgsm/untserver/_default.cfg | 6 +++--- .../config-lgsm/vsserver/_default.cfg | 6 +++--- .../config-lgsm/wurmserver/_default.cfg | 6 +++--- .../config-lgsm/zpsserver/_default.cfg | 6 +++--- lgsm/functions/command_debug.sh | 8 ++++++++ lgsm/functions/info_distro.sh | 15 +++++++++------ 73 files changed, 231 insertions(+), 217 deletions(-) diff --git a/lgsm/config-default/config-lgsm/arkserver/_default.cfg b/lgsm/config-default/config-lgsm/arkserver/_default.cfg index be19aacf6..afe5d8aea 100644 --- a/lgsm/config-default/config-lgsm/arkserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/arkserver/_default.cfg @@ -94,10 +94,10 @@ sleeptime="0.5" ## SteamCMD Settings # Server appid appid="376030" -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta latest_experimental" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch branch="" +# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server +steammaster="true" ## LinuxGSM Server Details # Do not edit diff --git a/lgsm/config-default/config-lgsm/arma3server/_default.cfg b/lgsm/config-default/config-lgsm/arma3server/_default.cfg index a456e1b44..6f1d61596 100644 --- a/lgsm/config-default/config-lgsm/arma3server/_default.cfg +++ b/lgsm/config-default/config-lgsm/arma3server/_default.cfg @@ -108,10 +108,10 @@ sleeptime="0.5" ## SteamCMD Settings # Server appid appid="233780" -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta latest_experimental" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch branch="" +# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server +steammaster="false" ## LinuxGSM Server Details # Do not edit diff --git a/lgsm/config-default/config-lgsm/bb2server/_default.cfg b/lgsm/config-default/config-lgsm/bb2server/_default.cfg index 0a45d187f..a1df15a8a 100644 --- a/lgsm/config-default/config-lgsm/bb2server/_default.cfg +++ b/lgsm/config-default/config-lgsm/bb2server/_default.cfg @@ -98,10 +98,10 @@ sleeptime="0.5" ## SteamCMD Settings # Server appid appid="475370" -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta latest_experimental" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch branch="" +# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server +steammaster="true" ## LinuxGSM Server Details # Do not edit diff --git a/lgsm/config-default/config-lgsm/bbserver/_default.cfg b/lgsm/config-default/config-lgsm/bbserver/_default.cfg index 1ee54e0c1..95ea35acd 100644 --- a/lgsm/config-default/config-lgsm/bbserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/bbserver/_default.cfg @@ -93,10 +93,10 @@ sleeptime="0.5" # Server appid appid="90" appidmod="cstrike" -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta latest_experimental" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch branch="" +# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server +steammaster="false" ## LinuxGSM Server Details # Do not edit diff --git a/lgsm/config-default/config-lgsm/bdserver/_default.cfg b/lgsm/config-default/config-lgsm/bdserver/_default.cfg index 404b3b796..cfb29f608 100644 --- a/lgsm/config-default/config-lgsm/bdserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/bdserver/_default.cfg @@ -92,6 +92,10 @@ sleeptime="0.5" ## SteamCMD Settings # Server appid appid="817300" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch +branch="" +# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server +steammaster="true" ## LinuxGSM Server Details # Do not edit diff --git a/lgsm/config-default/config-lgsm/bmdmserver/_default.cfg b/lgsm/config-default/config-lgsm/bmdmserver/_default.cfg index 2e27bf99e..9f60b4235 100644 --- a/lgsm/config-default/config-lgsm/bmdmserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/bmdmserver/_default.cfg @@ -98,10 +98,10 @@ sleeptime="0.5" ## SteamCMD Settings # Server appid appid="346680" -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta latest_experimental" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch branch="" +# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server +steammaster="true" ## LinuxGSM Server Details # Do not edit diff --git a/lgsm/config-default/config-lgsm/boserver/_default.cfg b/lgsm/config-default/config-lgsm/boserver/_default.cfg index c41c23b85..778733547 100644 --- a/lgsm/config-default/config-lgsm/boserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/boserver/_default.cfg @@ -16,7 +16,7 @@ ip="" ## Server Start Command | https://docs.linuxgsm.com/configuration/start-parameters#additional-parameters fn_parms(){ -parms=" -batchmode -nographics -dedicated -configfile=${servercfgfullpath}" +parms="-batchmode -nographics -dedicated -configfile=${servercfgfullpath}" } #### LinuxGSM Settings #### @@ -91,10 +91,10 @@ sleeptime="0.5" ## SteamCMD Settings # Server appid appid="416880" -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta latest_experimental" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch branch="" +# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server +steammaster="false" ## LinuxGSM Server Details # Do not edit diff --git a/lgsm/config-default/config-lgsm/bsserver/_default.cfg b/lgsm/config-default/config-lgsm/bsserver/_default.cfg index d6ed55c81..04b20addd 100644 --- a/lgsm/config-default/config-lgsm/bsserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/bsserver/_default.cfg @@ -102,10 +102,10 @@ sleeptime="0.5" ## SteamCMD Settings # Server appid appid="228780" -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta latest_experimental" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch branch="" +# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server +steammaster="true" ## LinuxGSM Server Details # Do not edit diff --git a/lgsm/config-default/config-lgsm/bt1944server/_default.cfg b/lgsm/config-default/config-lgsm/bt1944server/_default.cfg index dfc6333dc..81a00f049 100644 --- a/lgsm/config-default/config-lgsm/bt1944server/_default.cfg +++ b/lgsm/config-default/config-lgsm/bt1944server/_default.cfg @@ -90,10 +90,10 @@ sleeptime="0.5" ## SteamCMD Settings # Server appid appid="805140" -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta latest_experimental" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch branch="" +# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server +steammaster="false" ## LinuxGSM Server Details # Do not edit diff --git a/lgsm/config-default/config-lgsm/ccserver/_default.cfg b/lgsm/config-default/config-lgsm/ccserver/_default.cfg index 5fd37c64c..3bf39a55d 100644 --- a/lgsm/config-default/config-lgsm/ccserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/ccserver/_default.cfg @@ -93,10 +93,10 @@ sleeptime="0.5" ## SteamCMD Settings # Server appid appid="383410" -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta latest_experimental" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch branch="" +# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server +steammaster="false" ## LinuxGSM Server Details # Do not edit diff --git a/lgsm/config-default/config-lgsm/csczserver/_default.cfg b/lgsm/config-default/config-lgsm/csczserver/_default.cfg index da41f37c9..bb1ce28d6 100644 --- a/lgsm/config-default/config-lgsm/csczserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/csczserver/_default.cfg @@ -93,10 +93,10 @@ sleeptime="0.5" # Server appid appid="90" appidmod="czero" -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta latest_experimental" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch branch="" +# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server +steammaster="true" ## LinuxGSM Server Details # Do not edit diff --git a/lgsm/config-default/config-lgsm/csgoserver/_default.cfg b/lgsm/config-default/config-lgsm/csgoserver/_default.cfg index f81ca8e90..5ff46fcf4 100644 --- a/lgsm/config-default/config-lgsm/csgoserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/csgoserver/_default.cfg @@ -118,10 +118,10 @@ sleeptime="0.5" ## SteamCMD Settings # Server appid appid="740" -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta latest_experimental" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch branch="" +# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server +steammaster="true" ## LinuxGSM Server Details # Do not edit diff --git a/lgsm/config-default/config-lgsm/csserver/_default.cfg b/lgsm/config-default/config-lgsm/csserver/_default.cfg index bf044c8a6..471d76fb7 100644 --- a/lgsm/config-default/config-lgsm/csserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/csserver/_default.cfg @@ -93,10 +93,10 @@ sleeptime="0.5" # Server appid appid="90" appidmod="cstrike" -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta latest_experimental" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch branch="" +# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server +steammaster="true" ## LinuxGSM Server Details # Do not edit diff --git a/lgsm/config-default/config-lgsm/cssserver/_default.cfg b/lgsm/config-default/config-lgsm/cssserver/_default.cfg index beb83ee29..72fd8f04d 100644 --- a/lgsm/config-default/config-lgsm/cssserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/cssserver/_default.cfg @@ -98,10 +98,10 @@ sleeptime="0.5" ## SteamCMD Settings # Server appid appid="232330" -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta latest_experimental" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch branch="" +# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server +steammaster="true" ## LinuxGSM Server Details # Do not edit diff --git a/lgsm/config-default/config-lgsm/dabserver/_default.cfg b/lgsm/config-default/config-lgsm/dabserver/_default.cfg index e29118a7a..295387379 100644 --- a/lgsm/config-default/config-lgsm/dabserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/dabserver/_default.cfg @@ -93,10 +93,10 @@ sleeptime="0.5" ## SteamCMD Settings # Server appid appid="317800" -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta latest_experimental" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch branch="" +# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server +steammaster="true" ## LinuxGSM Server Details # Do not edit diff --git a/lgsm/config-default/config-lgsm/dmcserver/_default.cfg b/lgsm/config-default/config-lgsm/dmcserver/_default.cfg index 412e5ab73..9aae5bfd9 100644 --- a/lgsm/config-default/config-lgsm/dmcserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/dmcserver/_default.cfg @@ -93,10 +93,10 @@ sleeptime="0.5" # Server appid appid="90" appidmod="dmc" -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta latest_experimental" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch branch="" +# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server +steammaster="true" ## LinuxGSM Server Details # Do not edit diff --git a/lgsm/config-default/config-lgsm/dodserver/_default.cfg b/lgsm/config-default/config-lgsm/dodserver/_default.cfg index 518e821c3..7484ba7c9 100644 --- a/lgsm/config-default/config-lgsm/dodserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/dodserver/_default.cfg @@ -93,10 +93,10 @@ sleeptime="0.5" # Server appid appid="90" appidmod="dod" -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta latest_experimental" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch branch="" +# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server +steammaster="true" ## LinuxGSM Server Details # Do not edit diff --git a/lgsm/config-default/config-lgsm/dodsserver/_default.cfg b/lgsm/config-default/config-lgsm/dodsserver/_default.cfg index 67c4dd837..8969011f0 100644 --- a/lgsm/config-default/config-lgsm/dodsserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/dodsserver/_default.cfg @@ -93,10 +93,10 @@ sleeptime="0.5" ## SteamCMD Settings # Server appid appid="232290" -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta latest_experimental" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch branch="" +# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server +steammaster="true" ## LinuxGSM Server Details # Do not edit diff --git a/lgsm/config-default/config-lgsm/doiserver/_default.cfg b/lgsm/config-default/config-lgsm/doiserver/_default.cfg index 464020800..672c972cd 100644 --- a/lgsm/config-default/config-lgsm/doiserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/doiserver/_default.cfg @@ -95,10 +95,10 @@ sleeptime="0.5" ## SteamCMD Settings # Server appid appid="462310" -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta latest_experimental" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch branch="" +# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server +steammaster="true" ## LinuxGSM Server Details # Do not edit diff --git a/lgsm/config-default/config-lgsm/dstserver/_default.cfg b/lgsm/config-default/config-lgsm/dstserver/_default.cfg index ca0eb82f3..ea70e63c5 100644 --- a/lgsm/config-default/config-lgsm/dstserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/dstserver/_default.cfg @@ -96,10 +96,10 @@ sleeptime="0.5" ## SteamCMD Settings # Server appid appid="343050" -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta latest_experimental" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch branch="" +# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server +steammaster="false" ## LinuxGSM Server Details # Do not edit diff --git a/lgsm/config-default/config-lgsm/dysserver/_default.cfg b/lgsm/config-default/config-lgsm/dysserver/_default.cfg index 283902256..1efdf7655 100644 --- a/lgsm/config-default/config-lgsm/dysserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/dysserver/_default.cfg @@ -98,10 +98,10 @@ sleeptime="0.5" ## SteamCMD Settings # Server appid appid="17585" -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta latest_experimental" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch branch="" +# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server +steammaster="true" ## LinuxGSM Server Details # Do not edit diff --git a/lgsm/config-default/config-lgsm/ecoserver/_default.cfg b/lgsm/config-default/config-lgsm/ecoserver/_default.cfg index 17149df44..1996226d8 100644 --- a/lgsm/config-default/config-lgsm/ecoserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/ecoserver/_default.cfg @@ -81,10 +81,10 @@ sleeptime="0.5" ## SteamCMD Settings # Server appid appid="739590" -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta 7.3.0" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch branch="" +# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server +steammaster="false" ## LinuxGSM Server Details # Do not edit diff --git a/lgsm/config-default/config-lgsm/emserver/_default.cfg b/lgsm/config-default/config-lgsm/emserver/_default.cfg index d7cad367d..15a44e3e6 100644 --- a/lgsm/config-default/config-lgsm/emserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/emserver/_default.cfg @@ -98,10 +98,10 @@ sleeptime="0.5" ## SteamCMD Settings # Server appid appid="460040" -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta latest_experimental" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch branch="" +# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server +steammaster="true" ## LinuxGSM Server Details # Do not edit diff --git a/lgsm/config-default/config-lgsm/fofserver/_default.cfg b/lgsm/config-default/config-lgsm/fofserver/_default.cfg index c2dff17ca..4399350ac 100644 --- a/lgsm/config-default/config-lgsm/fofserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/fofserver/_default.cfg @@ -93,10 +93,10 @@ sleeptime="0.5" ## SteamCMD Settings # Server appid appid="295230" -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta latest_experimental" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch branch="" +# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server +steammaster="true" ## LinuxGSM Server Details # Do not edit diff --git a/lgsm/config-default/config-lgsm/gesserver/_default.cfg b/lgsm/config-default/config-lgsm/gesserver/_default.cfg index e4912eaa6..f82d94bd5 100644 --- a/lgsm/config-default/config-lgsm/gesserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/gesserver/_default.cfg @@ -93,10 +93,10 @@ sleeptime="0.5" ## SteamCMD Settings # Server appid appid="310" # Source 2007 SDK -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta latest_experimental" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch branch="" +# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server +steammaster="true" ## LinuxGSM Server Details # Do not edit diff --git a/lgsm/config-default/config-lgsm/gmodserver/_default.cfg b/lgsm/config-default/config-lgsm/gmodserver/_default.cfg index 33cf589ad..8c6f09565 100644 --- a/lgsm/config-default/config-lgsm/gmodserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/gmodserver/_default.cfg @@ -109,10 +109,10 @@ sleeptime="0.5" ## SteamCMD Settings # Server appid appid="4020" -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta latest_experimental" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch branch="" +# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server +steammaster="true" ## LinuxGSM Server Details # Do not edit diff --git a/lgsm/config-default/config-lgsm/hl2dmserver/_default.cfg b/lgsm/config-default/config-lgsm/hl2dmserver/_default.cfg index 15a6e44b1..7c9bb9a43 100644 --- a/lgsm/config-default/config-lgsm/hl2dmserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/hl2dmserver/_default.cfg @@ -93,10 +93,10 @@ sleeptime="0.5" ## SteamCMD Settings # Server appid appid="232370" -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta latest_experimental" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch branch="" +# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server +steammaster="true" ## LinuxGSM Server Details # Do not edit diff --git a/lgsm/config-default/config-lgsm/hldmserver/_default.cfg b/lgsm/config-default/config-lgsm/hldmserver/_default.cfg index 8705915cd..25dcd4736 100644 --- a/lgsm/config-default/config-lgsm/hldmserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/hldmserver/_default.cfg @@ -92,10 +92,10 @@ sleeptime="0.5" ## SteamCMD Settings # Server appid appid="90" -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta latest_experimental" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch branch="" +# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server +steammaster="true" ## LinuxGSM Server Details # Do not edit diff --git a/lgsm/config-default/config-lgsm/hldmsserver/_default.cfg b/lgsm/config-default/config-lgsm/hldmsserver/_default.cfg index 621bcfff2..249b702fd 100644 --- a/lgsm/config-default/config-lgsm/hldmsserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/hldmsserver/_default.cfg @@ -93,10 +93,10 @@ sleeptime="0.5" ## SteamCMD Settings # Server appid appid="255470" -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta latest_experimental" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch branch="" +# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server +steammaster="true" ## LinuxGSM Server Details # Do not edit diff --git a/lgsm/config-default/config-lgsm/hwserver/_default.cfg b/lgsm/config-default/config-lgsm/hwserver/_default.cfg index 5014c1608..7006a0bbb 100644 --- a/lgsm/config-default/config-lgsm/hwserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/hwserver/_default.cfg @@ -104,10 +104,10 @@ sleeptime="0.5" ## SteamCMD Settings # Server appid appid="405100" -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta latest_experimental" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch branch="" +# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server +steammaster="false" ## LinuxGSM Server Details # Do not edit diff --git a/lgsm/config-default/config-lgsm/insserver/_default.cfg b/lgsm/config-default/config-lgsm/insserver/_default.cfg index 78fcc3142..317444a82 100644 --- a/lgsm/config-default/config-lgsm/insserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/insserver/_default.cfg @@ -100,10 +100,10 @@ sleeptime="0.5" ## SteamCMD Settings # Server appid appid="237410" -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta latest_experimental" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch branch="" +# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server +steammaster="false" ## LinuxGSM Server Details # Do not edit diff --git a/lgsm/config-default/config-lgsm/inssserver/_default.cfg b/lgsm/config-default/config-lgsm/inssserver/_default.cfg index debd0a48b..1ff1665f5 100644 --- a/lgsm/config-default/config-lgsm/inssserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/inssserver/_default.cfg @@ -101,10 +101,10 @@ sleeptime="0.5" ## SteamCMD Settings # Server appid appid="581330" -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta latest_experimental" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch branch="" +# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server +steammaster="false" ## LinuxGSM Server Details # Do not edit diff --git a/lgsm/config-default/config-lgsm/iosserver/_default.cfg b/lgsm/config-default/config-lgsm/iosserver/_default.cfg index 4ba8da210..72021c0cf 100644 --- a/lgsm/config-default/config-lgsm/iosserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/iosserver/_default.cfg @@ -93,10 +93,10 @@ sleeptime="0.5" ## SteamCMD Settings # Server appid appid="673990" -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta latest_experimental" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch branch="" +# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server +steammaster="false" ## LinuxGSM Server Details # Do not edit diff --git a/lgsm/config-default/config-lgsm/jc2server/_default.cfg b/lgsm/config-default/config-lgsm/jc2server/_default.cfg index 514430d91..44ce7a033 100644 --- a/lgsm/config-default/config-lgsm/jc2server/_default.cfg +++ b/lgsm/config-default/config-lgsm/jc2server/_default.cfg @@ -85,10 +85,10 @@ sleeptime="0.5" ## SteamCMD Settings # Server appid appid="261140" -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta latest_experimental" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch branch="" +# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server +steammaster="true" ## LinuxGSM Server Details # Do not edit diff --git a/lgsm/config-default/config-lgsm/jc3server/_default.cfg b/lgsm/config-default/config-lgsm/jc3server/_default.cfg index 5f82ae5b5..5bfeb4b53 100644 --- a/lgsm/config-default/config-lgsm/jc3server/_default.cfg +++ b/lgsm/config-default/config-lgsm/jc3server/_default.cfg @@ -85,10 +85,10 @@ sleeptime="0.5" ## SteamCMD Settings # Server appid appid="619960" -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta latest_experimental" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch branch="" +# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server +steammaster="false" ## LinuxGSM Server Details # Do not edit diff --git a/lgsm/config-default/config-lgsm/kf2server/_default.cfg b/lgsm/config-default/config-lgsm/kf2server/_default.cfg index bef2d527f..e84287456 100644 --- a/lgsm/config-default/config-lgsm/kf2server/_default.cfg +++ b/lgsm/config-default/config-lgsm/kf2server/_default.cfg @@ -91,10 +91,10 @@ sleeptime="0.5" ## SteamCMD Settings # Server appid appid="232130" -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta latest_experimental" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch branch="" +# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server +steammaster="false" ## LinuxGSM Server Details # Do not edit diff --git a/lgsm/config-default/config-lgsm/kfserver/_default.cfg b/lgsm/config-default/config-lgsm/kfserver/_default.cfg index 9ba4af439..3bd2b572a 100644 --- a/lgsm/config-default/config-lgsm/kfserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/kfserver/_default.cfg @@ -97,10 +97,10 @@ sleeptime="0.5" ## SteamCMD Settings # Server appid appid="215360" -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta latest_experimental" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch branch="" +# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server +steammaster="false" ## LinuxGSM Server Details # Do not edit diff --git a/lgsm/config-default/config-lgsm/l4d2server/_default.cfg b/lgsm/config-default/config-lgsm/l4d2server/_default.cfg index 26f0211fb..0d9352588 100644 --- a/lgsm/config-default/config-lgsm/l4d2server/_default.cfg +++ b/lgsm/config-default/config-lgsm/l4d2server/_default.cfg @@ -92,10 +92,10 @@ sleeptime="0.5" ## SteamCMD Settings # Server appid appid="222860" -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta latest_experimental" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch branch="" +# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server +steammaster="false" ## LinuxGSM Server Details # Do not edit diff --git a/lgsm/config-default/config-lgsm/l4dserver/_default.cfg b/lgsm/config-default/config-lgsm/l4dserver/_default.cfg index 8fc41d29b..558291eec 100644 --- a/lgsm/config-default/config-lgsm/l4dserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/l4dserver/_default.cfg @@ -92,10 +92,10 @@ sleeptime="0.5" ## SteamCMD Settings # Server appid appid="222840" -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta latest_experimental" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch branch="" +# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server +steammaster="false" ## LinuxGSM Server Details # Do not edit diff --git a/lgsm/config-default/config-lgsm/mhserver/_default.cfg b/lgsm/config-default/config-lgsm/mhserver/_default.cfg index f3b0c6b61..7e35f9c62 100644 --- a/lgsm/config-default/config-lgsm/mhserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/mhserver/_default.cfg @@ -93,10 +93,10 @@ sleeptime="0.5" ## SteamCMD Settings # Server appid appid="629800" -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta latest_experimental" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch branch="" +# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server +steammaster="false" ## LinuxGSM Server Details # Do not edit diff --git a/lgsm/config-default/config-lgsm/ndserver/_default.cfg b/lgsm/config-default/config-lgsm/ndserver/_default.cfg index 9bbab8d20..5a96d0cdc 100644 --- a/lgsm/config-default/config-lgsm/ndserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/ndserver/_default.cfg @@ -93,10 +93,10 @@ sleeptime="0.5" ## SteamCMD Settings # Server appid appid="111710" -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta latest_experimental" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch branch="" +# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server +steammaster="true" ## LinuxGSM Server Details # Do not edit diff --git a/lgsm/config-default/config-lgsm/nmrihserver/_default.cfg b/lgsm/config-default/config-lgsm/nmrihserver/_default.cfg index fe6005c22..4f5e37129 100644 --- a/lgsm/config-default/config-lgsm/nmrihserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/nmrihserver/_default.cfg @@ -98,10 +98,10 @@ sleeptime="0.5" ## SteamCMD Settings # Server appid appid="317670" -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta latest_experimental" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch branch="" +# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server +steammaster="true" ## LinuxGSM Server Details # Do not edit diff --git a/lgsm/config-default/config-lgsm/ns2cserver/_default.cfg b/lgsm/config-default/config-lgsm/ns2cserver/_default.cfg index f9dfaf640..ba78da4b6 100644 --- a/lgsm/config-default/config-lgsm/ns2cserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/ns2cserver/_default.cfg @@ -100,10 +100,10 @@ sleeptime="0.5" ## SteamCMD Settings # Server appid appid="313900" -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta latest_experimental" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch branch="" +# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server +steammaster="true" ## LinuxGSM Server Details # Do not edit diff --git a/lgsm/config-default/config-lgsm/ns2server/_default.cfg b/lgsm/config-default/config-lgsm/ns2server/_default.cfg index 9916e4fc6..9e5e7044f 100644 --- a/lgsm/config-default/config-lgsm/ns2server/_default.cfg +++ b/lgsm/config-default/config-lgsm/ns2server/_default.cfg @@ -104,10 +104,10 @@ sleeptime="0.5" ## SteamCMD Settings # Server appid appid="4940" -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta latest_experimental" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch branch="" +# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server +steammaster="true" ## LinuxGSM Server Details # Do not edit diff --git a/lgsm/config-default/config-lgsm/nsserver/_default.cfg b/lgsm/config-default/config-lgsm/nsserver/_default.cfg index 753bd99d3..16e80a554 100644 --- a/lgsm/config-default/config-lgsm/nsserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/nsserver/_default.cfg @@ -93,10 +93,10 @@ sleeptime="0.5" # Server appid appid="90" appidmod="cstrike" -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta latest_experimental" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch branch="" +# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server +steammaster="true" ## LinuxGSM Server Details # Do not edit diff --git a/lgsm/config-default/config-lgsm/opforserver/_default.cfg b/lgsm/config-default/config-lgsm/opforserver/_default.cfg index e2e17db19..d9fc738e2 100644 --- a/lgsm/config-default/config-lgsm/opforserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/opforserver/_default.cfg @@ -93,10 +93,10 @@ sleeptime="0.5" # Server appid appid="90" appidmod="gearbox" -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta latest_experimental" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch branch="" +# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server +steammaster="true" ## LinuxGSM Server Details # Do not edit diff --git a/lgsm/config-default/config-lgsm/pcserver/_default.cfg b/lgsm/config-default/config-lgsm/pcserver/_default.cfg index 03eea31ce..d9ed6a032 100644 --- a/lgsm/config-default/config-lgsm/pcserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/pcserver/_default.cfg @@ -85,10 +85,10 @@ sleeptime="0.5" ## SteamCMD Settings # Server appid appid="332670" -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta latest_experimental" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch branch="" +# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server +steammaster="false" ## LinuxGSM Server Details # Do not edit diff --git a/lgsm/config-default/config-lgsm/pstbsserver/_default.cfg b/lgsm/config-default/config-lgsm/pstbsserver/_default.cfg index 3a0914658..997e57784 100644 --- a/lgsm/config-default/config-lgsm/pstbsserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/pstbsserver/_default.cfg @@ -96,10 +96,10 @@ sleeptime="0.5" ## SteamCMD Settings # Server appid appid="746200" -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta latest_experimental" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch branch="" +# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server +steammaster="false" ## LinuxGSM Server Details # Do not edit diff --git a/lgsm/config-default/config-lgsm/pvkiiserver/_default.cfg b/lgsm/config-default/config-lgsm/pvkiiserver/_default.cfg index 0acf99a18..f853e8583 100644 --- a/lgsm/config-default/config-lgsm/pvkiiserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/pvkiiserver/_default.cfg @@ -93,10 +93,10 @@ sleeptime="0.5" ## SteamCMD Settings # Server appid appid="17575" -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta latest_experimental" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch branch="" +# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server +steammaster="true" ## LinuxGSM Server Details # Do not edit diff --git a/lgsm/config-default/config-lgsm/pzserver/_default.cfg b/lgsm/config-default/config-lgsm/pzserver/_default.cfg index ffcce5488..8884ad99c 100644 --- a/lgsm/config-default/config-lgsm/pzserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/pzserver/_default.cfg @@ -88,10 +88,10 @@ sleeptime="0.5" ## SteamCMD Settings # Server appid appid="380870" -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta latest_experimental" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch branch="" +# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server +steammaster="false" ## LinuxGSM Server Details # Do not edit diff --git a/lgsm/config-default/config-lgsm/qlserver/_default.cfg b/lgsm/config-default/config-lgsm/qlserver/_default.cfg index 31ea6ead8..b062c8860 100644 --- a/lgsm/config-default/config-lgsm/qlserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/qlserver/_default.cfg @@ -87,10 +87,10 @@ sleeptime="0.5" ## SteamCMD Settings # Server appid appid="349090" -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta latest_experimental" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch branch="" +# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server +steammaster="true" ## LinuxGSM Server Details # Do not edit diff --git a/lgsm/config-default/config-lgsm/ricochetserver/_default.cfg b/lgsm/config-default/config-lgsm/ricochetserver/_default.cfg index 477423b81..44ee520b2 100644 --- a/lgsm/config-default/config-lgsm/ricochetserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/ricochetserver/_default.cfg @@ -93,10 +93,10 @@ sleeptime="0.5" # Server appid appid="90" appidmod="ricochet" -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta latest_experimental" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch branch="" +# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server +steammaster="true" ## LinuxGSM Server Details # Do not edit diff --git a/lgsm/config-default/config-lgsm/roserver/_default.cfg b/lgsm/config-default/config-lgsm/roserver/_default.cfg index 89865f281..e4148ec75 100644 --- a/lgsm/config-default/config-lgsm/roserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/roserver/_default.cfg @@ -93,10 +93,10 @@ sleeptime="0.5" ## SteamCMD Settings # Server appid appid="223250" -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta latest_experimental" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch branch="" +# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server +steammaster="false" ## LinuxGSM Server Details # Do not edit diff --git a/lgsm/config-default/config-lgsm/rustserver/_default.cfg b/lgsm/config-default/config-lgsm/rustserver/_default.cfg index 1759a1c90..4e7064ccf 100644 --- a/lgsm/config-default/config-lgsm/rustserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/rustserver/_default.cfg @@ -117,10 +117,10 @@ sleeptime="0.5" ## SteamCMD Settings # Server appid appid="258550" -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta latest_experimental" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch branch="" +# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server +steammaster="false" ## LinuxGSM Server Details # Do not edit diff --git a/lgsm/config-default/config-lgsm/rwserver/_default.cfg b/lgsm/config-default/config-lgsm/rwserver/_default.cfg index eea0b712c..0f8c9645b 100644 --- a/lgsm/config-default/config-lgsm/rwserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/rwserver/_default.cfg @@ -88,10 +88,10 @@ sleeptime="0.5" ## SteamCMD Settings # Server appid appid="339010" -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta latest_experimental" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch branch="" +# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server +steammaster="false" ## LinuxGSM Server Details # Do not edit diff --git a/lgsm/config-default/config-lgsm/sbotsserver/_default.cfg b/lgsm/config-default/config-lgsm/sbotsserver/_default.cfg index 38a04f459..9e32e5d43 100644 --- a/lgsm/config-default/config-lgsm/sbotsserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/sbotsserver/_default.cfg @@ -90,10 +90,10 @@ sleeptime="0.5" ## SteamCMD Settings # Server appid appid="974130" -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta latest_experimental" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch branch="" +# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server +steammaster="false" ## LinuxGSM Server Details # Do not edit diff --git a/lgsm/config-default/config-lgsm/sbserver/_default.cfg b/lgsm/config-default/config-lgsm/sbserver/_default.cfg index 8b0df872a..7de6bd3b5 100644 --- a/lgsm/config-default/config-lgsm/sbserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/sbserver/_default.cfg @@ -92,10 +92,9 @@ sleeptime="0.5" ## SteamCMD Settings # Server appid appid="211820" -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta latest_experimental" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch branch="" +steammaster="flase" ## LinuxGSM Server Details # Do not edit diff --git a/lgsm/config-default/config-lgsm/sdtdserver/_default.cfg b/lgsm/config-default/config-lgsm/sdtdserver/_default.cfg index d56f05a5a..38cffed24 100644 --- a/lgsm/config-default/config-lgsm/sdtdserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/sdtdserver/_default.cfg @@ -88,10 +88,10 @@ sleeptime="0.5" ## SteamCMD Settings # Server appid appid="294420" -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta latest_experimental" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch branch="" +# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server +steammaster="true" ## LinuxGSM Server Details # Do not edit diff --git a/lgsm/config-default/config-lgsm/squadserver/_default.cfg b/lgsm/config-default/config-lgsm/squadserver/_default.cfg index 075f3d940..5254148cd 100644 --- a/lgsm/config-default/config-lgsm/squadserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/squadserver/_default.cfg @@ -90,10 +90,10 @@ sleeptime="0.5" ## SteamCMD Settings # Server appid appid="403240" -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta latest_experimental" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch branch="" +# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server +steammaster="false" ## LinuxGSM Server Details # Do not edit diff --git a/lgsm/config-default/config-lgsm/ss3server/_default.cfg b/lgsm/config-default/config-lgsm/ss3server/_default.cfg index 54f2dc817..af9df3a5a 100644 --- a/lgsm/config-default/config-lgsm/ss3server/_default.cfg +++ b/lgsm/config-default/config-lgsm/ss3server/_default.cfg @@ -89,10 +89,10 @@ sleeptime="0.5" ## SteamCMD Settings # Server appid appid="41080" -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta latest_experimental" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch branch="" +# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server +steammaster="false" ## LinuxGSM Server Details # Do not edit diff --git a/lgsm/config-default/config-lgsm/stserver/_default.cfg b/lgsm/config-default/config-lgsm/stserver/_default.cfg index 856a2b639..a92271abd 100644 --- a/lgsm/config-default/config-lgsm/stserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/stserver/_default.cfg @@ -95,10 +95,10 @@ sleeptime="0.5" ## SteamCMD Settings # Server appid appid="600760" -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta latest_experimental" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch branch="" +# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server +steammaster="false" ## LinuxGSM Server Details # Do not edit diff --git a/lgsm/config-default/config-lgsm/svenserver/_default.cfg b/lgsm/config-default/config-lgsm/svenserver/_default.cfg index f938b7773..066b35e5c 100644 --- a/lgsm/config-default/config-lgsm/svenserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/svenserver/_default.cfg @@ -92,10 +92,10 @@ sleeptime="0.5" ## SteamCMD Settings # Server appid appid="276060" -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta latest_experimental" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch branch="" +# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server +steammaster="true" ## LinuxGSM Server Details # Do not edit diff --git a/lgsm/config-default/config-lgsm/terrariaserver/_default.cfg b/lgsm/config-default/config-lgsm/terrariaserver/_default.cfg index 3d260389f..0f59b17c4 100644 --- a/lgsm/config-default/config-lgsm/terrariaserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/terrariaserver/_default.cfg @@ -92,10 +92,10 @@ sleeptime="0.5" ## SteamCMD Settings # Server appid appid="105600" -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta latest_experimental" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch branch="" +# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server +steammaster="false" ## LinuxGSM Server Details # Do not edit diff --git a/lgsm/config-default/config-lgsm/tf2server/_default.cfg b/lgsm/config-default/config-lgsm/tf2server/_default.cfg index d9ab34b4a..fc2675a42 100644 --- a/lgsm/config-default/config-lgsm/tf2server/_default.cfg +++ b/lgsm/config-default/config-lgsm/tf2server/_default.cfg @@ -98,10 +98,10 @@ sleeptime="0.5" ## SteamCMD Settings # Server appid appid="232250" -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta latest_experimental" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch branch="" +# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server +steammaster="true" ## LinuxGSM Server Details # Do not edit diff --git a/lgsm/config-default/config-lgsm/tfcserver/_default.cfg b/lgsm/config-default/config-lgsm/tfcserver/_default.cfg index 297268e83..753dce496 100644 --- a/lgsm/config-default/config-lgsm/tfcserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/tfcserver/_default.cfg @@ -93,10 +93,10 @@ sleeptime="0.5" # Server appid appid="90" appidmod="tfc" -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta latest_experimental" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch branch="" +# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server +steammaster="true" ## LinuxGSM Server Details # Do not edit diff --git a/lgsm/config-default/config-lgsm/tuserver/_default.cfg b/lgsm/config-default/config-lgsm/tuserver/_default.cfg index 42019c23a..b3277fc37 100644 --- a/lgsm/config-default/config-lgsm/tuserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/tuserver/_default.cfg @@ -95,10 +95,10 @@ sleeptime="0.5" ## SteamCMD Settings # Server appid appid="439660" -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta latest_experimental" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch branch="" +# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server +steammaster="false" ## LinuxGSM Server Details # Do not edit diff --git a/lgsm/config-default/config-lgsm/twserver/_default.cfg b/lgsm/config-default/config-lgsm/twserver/_default.cfg index f9c8ebdda..3dbed4eff 100644 --- a/lgsm/config-default/config-lgsm/twserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/twserver/_default.cfg @@ -92,10 +92,10 @@ sleeptime="0.5" ## SteamCMD Settings # Server appid appid="380840" -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta latest_experimental" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch branch="" +# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server +steammaster="false" ## LinuxGSM Server Details # Do not edit diff --git a/lgsm/config-default/config-lgsm/untserver/_default.cfg b/lgsm/config-default/config-lgsm/untserver/_default.cfg index aba9cc558..ef582c298 100644 --- a/lgsm/config-default/config-lgsm/untserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/untserver/_default.cfg @@ -99,10 +99,10 @@ sleeptime="0.5" ## SteamCMD Settings # Server appid appid="304930" -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta latest_experimental" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch branch="" +# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server +steammaster="false" ## LinuxGSM Server Details # Do not edit diff --git a/lgsm/config-default/config-lgsm/vsserver/_default.cfg b/lgsm/config-default/config-lgsm/vsserver/_default.cfg index 1b8323999..1672d0d72 100644 --- a/lgsm/config-default/config-lgsm/vsserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/vsserver/_default.cfg @@ -93,10 +93,10 @@ sleeptime="0.5" # Server appid appid="90" appidmod="cstrike" -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta latest_experimental" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch branch="" +# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server +steammaster="true" ## LinuxGSM Server Details # Do not edit diff --git a/lgsm/config-default/config-lgsm/wurmserver/_default.cfg b/lgsm/config-default/config-lgsm/wurmserver/_default.cfg index 769621fd6..862215212 100644 --- a/lgsm/config-default/config-lgsm/wurmserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/wurmserver/_default.cfg @@ -84,10 +84,10 @@ sleeptime="0.5" ## SteamCMD Settings # Server appid appid="402370" -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta latest_experimental" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch branch="" +# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server +steammaster="false" ## LinuxGSM Server Details # Do not edit diff --git a/lgsm/config-default/config-lgsm/zpsserver/_default.cfg b/lgsm/config-default/config-lgsm/zpsserver/_default.cfg index d412eca0a..3c4e0285a 100644 --- a/lgsm/config-default/config-lgsm/zpsserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/zpsserver/_default.cfg @@ -98,10 +98,10 @@ sleeptime="0.5" ## SteamCMD Settings # Server appid appid="17505" -# Steam App Branch Select -# Allows to opt into the various Steam app branches. Default branch is "". -# Example: "-beta latest_experimental" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch branch="" +# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server +steammaster="true" ## LinuxGSM Server Details # Do not edit diff --git a/lgsm/functions/command_debug.sh b/lgsm/functions/command_debug.sh index 668c07b2b..014b0aeb5 100644 --- a/lgsm/functions/command_debug.sh +++ b/lgsm/functions/command_debug.sh @@ -61,6 +61,14 @@ if [ -n "${extip}" ]; then echo -e "${blue}Internet IP:\t${default}${extip}:${port}" fi fi +# Listed on Master Server +if [ "${masterserver}" ];then + if [ "${masterserver}" == "true" ];then + echo -e "${blue}Master Server:\t${green}${masterserver}${default}" + else + echo -e "${blue}Master Server:\t${red}${masterserver}${default}" + fi +fi # Server password if [ -n "${serverpassword}" ]; then echo -e "${blue}Server password:\t${default}${serverpassword}" diff --git a/lgsm/functions/info_distro.sh b/lgsm/functions/info_distro.sh index d343459dc..711b14ba5 100644 --- a/lgsm/functions/info_distro.sh +++ b/lgsm/functions/info_distro.sh @@ -223,14 +223,17 @@ if [ -z "${extip}" ]; then fi # Steam Master Server - checks if detected by master server -if [ ! "$(command -v jq 2>/dev/null)" ]; then +if [ "$(command -v jq 2>/dev/null)" ]; then if [ "${ip}" ]&&[ "${port}" ]; then - if [ "${engine}" == "source" ]||[ "${engine}" == "goldsource" ]||[ "${shortname}" == "jc2" ]||[ "${shortname}" == "ql" ]; then - masterserver=$(${curlpath} -s 'https://api.steampowered.com/ISteamApps/GetServersAtAddress/v0001?addr='${ip}':'${port}'&format=json' | jq '.response.servers[]|.addr' | wc -l) - if [ "${steammaster}" == "1" ]; then - masterserver="true" - else + if [ "${steammaster}" == "true" ]; then + masterserver=$(${curlpath} -m 3 -s 'https://api.steampowered.com/ISteamApps/GetServersAtAddress/v0001?addr='${ip}':'${port}'&format=json' | jq '.response.servers[]|.addr' | wc -l) + if [ "${masterserver}" == "0" ]; then + masterserver=$(${curlpath} -m 3 -s 'https://api.steampowered.com/ISteamApps/GetServersAtAddress/v0001?addr='${extip}':'${port}'&format=json' | jq '.response.servers[]|.addr' | wc -l) + fi + if [ "${masterserver}" == "0" ]; then masterserver="false" + else + masterserver="true" fi fi fi From cf10b5c797a7b7b4d2aea11770dbd4515e15b649 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Tue, 11 Jun 2019 22:11:38 +0100 Subject: [PATCH 12/20] fix(core): prevent invalid time interval error --- lgsm/functions/core_messages.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lgsm/functions/core_messages.sh b/lgsm/functions/core_messages.sh index e28e65765..c0fe5b634 100644 --- a/lgsm/functions/core_messages.sh +++ b/lgsm/functions/core_messages.sh @@ -30,6 +30,9 @@ fn_ansi_loader(){ fn_sleep_time(){ if [ "${sleeptime}" != "0" ]||[ "${travistest}" != "1" ]; then + if [ -z "${sleeptime}" ]; then + sleeptime=0.5 + fi sleep "${sleeptime}" fi } From 5901f19d07332ac2ce99cc014673a9cc8ed7b7d5 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Tue, 11 Jun 2019 22:35:46 +0100 Subject: [PATCH 13/20] feat(alerts): add displayip variable (#2310) --- lgsm/config-default/config-lgsm/arkserver/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/arma3server/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/bb2server/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/bbserver/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/bdserver/_default.cfg | 3 +++ .../config-default/config-lgsm/bf1942server/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/bmdmserver/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/boserver/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/bsserver/_default.cfg | 3 +++ .../config-default/config-lgsm/bt1944server/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/ccserver/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/cod2server/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/cod4server/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/codserver/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/coduoserver/_default.cfg | 3 +++ .../config-default/config-lgsm/codwawserver/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/csczserver/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/csgoserver/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/csserver/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/cssserver/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/dabserver/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/dmcserver/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/dodserver/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/dodsserver/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/doiserver/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/dstserver/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/dysserver/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/ecoserver/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/emserver/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/etlserver/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/fctrserver/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/fofserver/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/gesserver/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/gmodserver/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/hl2dmserver/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/hldmserver/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/hldmsserver/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/hwserver/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/insserver/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/inssserver/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/iosserver/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/jc2server/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/jc3server/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/kf2server/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/kfserver/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/l4d2server/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/l4dserver/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/mcserver/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/mtaserver/_default.cfg | 3 +++ .../config-default/config-lgsm/mumbleserver/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/ndserver/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/nmrihserver/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/ns2cserver/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/ns2server/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/nsserver/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/opforserver/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/pcserver/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/pstbsserver/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/pvkiiserver/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/pzserver/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/q2server/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/q3server/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/qlserver/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/qwserver/_default.cfg | 3 +++ .../config-lgsm/ricochetserver/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/roserver/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/rtcwserver/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/rustserver/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/rwserver/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/sampserver/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/sbotsserver/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/sbserver/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/sdtdserver/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/sof2server/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/squadserver/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/ss3server/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/stserver/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/svenserver/_default.cfg | 3 +++ .../config-lgsm/terrariaserver/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/tf2server/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/tfcserver/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/ts3server/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/tuserver/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/twserver/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/ut2k4server/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/ut3server/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/ut99server/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/utserver/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/vsserver/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/wetserver/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/wurmserver/_default.cfg | 3 +++ lgsm/config-default/config-lgsm/zpsserver/_default.cfg | 3 +++ lgsm/functions/alert_discord.sh | 2 +- lgsm/functions/alert_ifttt.sh | 2 +- lgsm/functions/alert_pushbullet.sh | 2 +- lgsm/functions/alert_pushover.sh | 2 +- lgsm/functions/alert_telegram.sh | 2 +- lgsm/functions/info_distro.sh | 9 +++++++++ lgsm/functions/info_messages.sh | 7 ++++++- 99 files changed, 296 insertions(+), 6 deletions(-) diff --git a/lgsm/config-default/config-lgsm/arkserver/_default.cfg b/lgsm/config-default/config-lgsm/arkserver/_default.cfg index afe5d8aea..a1fec34a6 100644 --- a/lgsm/config-default/config-lgsm/arkserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/arkserver/_default.cfg @@ -27,6 +27,9 @@ parms="\"${defaultmap}?AltSaveDirectoryName=${defaultmap}?listen?MultiHome=${ip} ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/arma3server/_default.cfg b/lgsm/config-default/config-lgsm/arma3server/_default.cfg index 6f1d61596..4f323f7e4 100644 --- a/lgsm/config-default/config-lgsm/arma3server/_default.cfg +++ b/lgsm/config-default/config-lgsm/arma3server/_default.cfg @@ -41,6 +41,9 @@ parms="-ip=${ip} -port=${port} -cfg=${networkcfgfullpath} -config=${servercfgful ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/bb2server/_default.cfg b/lgsm/config-default/config-lgsm/bb2server/_default.cfg index a1df15a8a..48b1f164a 100644 --- a/lgsm/config-default/config-lgsm/bb2server/_default.cfg +++ b/lgsm/config-default/config-lgsm/bb2server/_default.cfg @@ -31,6 +31,9 @@ parms="-game brainbread2 -strictportbind -ip ${ip} -port ${port} +clientport ${c ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/bbserver/_default.cfg b/lgsm/config-default/config-lgsm/bbserver/_default.cfg index 95ea35acd..1910706f2 100644 --- a/lgsm/config-default/config-lgsm/bbserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/bbserver/_default.cfg @@ -25,6 +25,9 @@ parms="-game brainbread -strictportbind +ip ${ip} -port ${port} +clientport ${cl ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/bdserver/_default.cfg b/lgsm/config-default/config-lgsm/bdserver/_default.cfg index cfb29f608..99f546ab6 100644 --- a/lgsm/config-default/config-lgsm/bdserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/bdserver/_default.cfg @@ -25,6 +25,9 @@ parms="-game bdef -strictportbind +ip ${ip} -port ${port} +clientport ${clientpo ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/bf1942server/_default.cfg b/lgsm/config-default/config-lgsm/bf1942server/_default.cfg index a047bbfb7..23c61227f 100644 --- a/lgsm/config-default/config-lgsm/bf1942server/_default.cfg +++ b/lgsm/config-default/config-lgsm/bf1942server/_default.cfg @@ -18,6 +18,9 @@ parms="+hostServer 1 +dedicated 1" ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/bmdmserver/_default.cfg b/lgsm/config-default/config-lgsm/bmdmserver/_default.cfg index 9f60b4235..1c29b6aa5 100644 --- a/lgsm/config-default/config-lgsm/bmdmserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/bmdmserver/_default.cfg @@ -31,6 +31,9 @@ parms="-game bms -strictportbind -ip ${ip} -port ${port} +clientport ${clientpor ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/boserver/_default.cfg b/lgsm/config-default/config-lgsm/boserver/_default.cfg index 778733547..ae9a0cee8 100644 --- a/lgsm/config-default/config-lgsm/boserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/boserver/_default.cfg @@ -24,6 +24,9 @@ parms="-batchmode -nographics -dedicated -configfile=${servercfgfullpath}" ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/bsserver/_default.cfg b/lgsm/config-default/config-lgsm/bsserver/_default.cfg index 04b20addd..93eb491f3 100644 --- a/lgsm/config-default/config-lgsm/bsserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/bsserver/_default.cfg @@ -35,6 +35,9 @@ parms="-game "${serverfiles}/berimbau" -autoupdate -strictportbind -ip ${ip} -po ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/bt1944server/_default.cfg b/lgsm/config-default/config-lgsm/bt1944server/_default.cfg index 81a00f049..b5164fecf 100644 --- a/lgsm/config-default/config-lgsm/bt1944server/_default.cfg +++ b/lgsm/config-default/config-lgsm/bt1944server/_default.cfg @@ -23,6 +23,9 @@ parms="/Game/Maps/Final_Maps/Derailed?Game=/Script/ShooterGame.BombGameMode?list ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/ccserver/_default.cfg b/lgsm/config-default/config-lgsm/ccserver/_default.cfg index 3bf39a55d..7d30f03bb 100644 --- a/lgsm/config-default/config-lgsm/ccserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/ccserver/_default.cfg @@ -26,6 +26,9 @@ parms="-game cure -strictportbind -ip ${ip} -port ${port} +clientport ${clientpo ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/cod2server/_default.cfg b/lgsm/config-default/config-lgsm/cod2server/_default.cfg index be01e6fb4..1d114e688 100644 --- a/lgsm/config-default/config-lgsm/cod2server/_default.cfg +++ b/lgsm/config-default/config-lgsm/cod2server/_default.cfg @@ -24,6 +24,9 @@ parms="+set sv_punkbuster 0 +set fs_basepath ${serverfiles} +set dedicated 2 +se ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/cod4server/_default.cfg b/lgsm/config-default/config-lgsm/cod4server/_default.cfg index 01fe6f560..210450f59 100644 --- a/lgsm/config-default/config-lgsm/cod4server/_default.cfg +++ b/lgsm/config-default/config-lgsm/cod4server/_default.cfg @@ -24,6 +24,9 @@ parms="+set sv_punkbuster 0 +set fs_basepath ${serverfiles} +set fs_homepath ${s ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/codserver/_default.cfg b/lgsm/config-default/config-lgsm/codserver/_default.cfg index cd3db5ec5..d548cfb59 100644 --- a/lgsm/config-default/config-lgsm/codserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/codserver/_default.cfg @@ -24,6 +24,9 @@ parms="+set sv_punkbuster 0 +set fs_basepath ${serverfiles} +set dedicated 2 +se ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/coduoserver/_default.cfg b/lgsm/config-default/config-lgsm/coduoserver/_default.cfg index 36b08300e..355f9f339 100644 --- a/lgsm/config-default/config-lgsm/coduoserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/coduoserver/_default.cfg @@ -24,6 +24,9 @@ parms="+set sv_punkbuster 0 +set fs_basepath ${serverfiles} +set dedicated 2 +se ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/codwawserver/_default.cfg b/lgsm/config-default/config-lgsm/codwawserver/_default.cfg index 86f667ffd..3f0b882bc 100644 --- a/lgsm/config-default/config-lgsm/codwawserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/codwawserver/_default.cfg @@ -24,6 +24,9 @@ parms="+set sv_punkbuster 0 +set fs_basepath ${serverfiles} +set dedicated 2 +se ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/csczserver/_default.cfg b/lgsm/config-default/config-lgsm/csczserver/_default.cfg index bb1ce28d6..b3620a68c 100644 --- a/lgsm/config-default/config-lgsm/csczserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/csczserver/_default.cfg @@ -25,6 +25,9 @@ parms="-game czero -strictportbind +ip ${ip} -port ${port} +clientport ${clientp ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/csgoserver/_default.cfg b/lgsm/config-default/config-lgsm/csgoserver/_default.cfg index 5ff46fcf4..fa9a79e9d 100644 --- a/lgsm/config-default/config-lgsm/csgoserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/csgoserver/_default.cfg @@ -51,6 +51,9 @@ parms="-game csgo -usercon -strictportbind -ip ${ip} -port ${port} +clientport $ ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/csserver/_default.cfg b/lgsm/config-default/config-lgsm/csserver/_default.cfg index 471d76fb7..e088813a3 100644 --- a/lgsm/config-default/config-lgsm/csserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/csserver/_default.cfg @@ -25,6 +25,9 @@ parms="-game cstrike -strictportbind +ip ${ip} -port ${port} +clientport ${clien ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/cssserver/_default.cfg b/lgsm/config-default/config-lgsm/cssserver/_default.cfg index 72fd8f04d..dccd9afbb 100644 --- a/lgsm/config-default/config-lgsm/cssserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/cssserver/_default.cfg @@ -31,6 +31,9 @@ parms="-game cstrike -strictportbind -ip ${ip} -port ${port} +clientport ${clien ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/dabserver/_default.cfg b/lgsm/config-default/config-lgsm/dabserver/_default.cfg index 295387379..dc6ad1bde 100644 --- a/lgsm/config-default/config-lgsm/dabserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/dabserver/_default.cfg @@ -26,6 +26,9 @@ parms="-strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +tv_por ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/dmcserver/_default.cfg b/lgsm/config-default/config-lgsm/dmcserver/_default.cfg index 9aae5bfd9..fa68dd498 100644 --- a/lgsm/config-default/config-lgsm/dmcserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/dmcserver/_default.cfg @@ -25,6 +25,9 @@ parms="-game dmc -strictportbind +ip ${ip} -port ${port} +clientport ${clientpor ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/dodserver/_default.cfg b/lgsm/config-default/config-lgsm/dodserver/_default.cfg index 7484ba7c9..77c07a7f4 100644 --- a/lgsm/config-default/config-lgsm/dodserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/dodserver/_default.cfg @@ -25,6 +25,9 @@ parms="-game dod -strictportbind +ip ${ip} -port ${port} +clientport ${clientpor ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/dodsserver/_default.cfg b/lgsm/config-default/config-lgsm/dodsserver/_default.cfg index 8969011f0..8f01c98ea 100644 --- a/lgsm/config-default/config-lgsm/dodsserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/dodsserver/_default.cfg @@ -26,6 +26,9 @@ parms="-game dod -strictportbind -ip ${ip} -port ${port} +clientport ${clientpor ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/doiserver/_default.cfg b/lgsm/config-default/config-lgsm/doiserver/_default.cfg index 672c972cd..da35c0130 100644 --- a/lgsm/config-default/config-lgsm/doiserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/doiserver/_default.cfg @@ -28,6 +28,9 @@ parms="-game doi -strictportbind -ip ${ip} -port ${port} +clientport ${clientpor ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/dstserver/_default.cfg b/lgsm/config-default/config-lgsm/dstserver/_default.cfg index ea70e63c5..f4af4602b 100644 --- a/lgsm/config-default/config-lgsm/dstserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/dstserver/_default.cfg @@ -29,6 +29,9 @@ parms="-persistent_storage_root ${persistentstorageroot} -conf_dir ${confdir} -c ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/dysserver/_default.cfg b/lgsm/config-default/config-lgsm/dysserver/_default.cfg index 1efdf7655..48f26076f 100644 --- a/lgsm/config-default/config-lgsm/dysserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/dysserver/_default.cfg @@ -31,6 +31,9 @@ parms="-game "${serverfiles}/dystopia" -strictportbind -ip ${ip} -port ${port} + ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/ecoserver/_default.cfg b/lgsm/config-default/config-lgsm/ecoserver/_default.cfg index 1996226d8..ed261434f 100644 --- a/lgsm/config-default/config-lgsm/ecoserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/ecoserver/_default.cfg @@ -18,6 +18,9 @@ fn_parms(){ ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/emserver/_default.cfg b/lgsm/config-default/config-lgsm/emserver/_default.cfg index 15a44e3e6..500165b64 100644 --- a/lgsm/config-default/config-lgsm/emserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/emserver/_default.cfg @@ -31,6 +31,9 @@ parms="-game empires -strictportbind -ip ${ip} -port ${port} +clientport ${clien ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/etlserver/_default.cfg b/lgsm/config-default/config-lgsm/etlserver/_default.cfg index b380c8da2..22cfde4bb 100644 --- a/lgsm/config-default/config-lgsm/etlserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/etlserver/_default.cfg @@ -18,6 +18,9 @@ fn_parms(){ ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/fctrserver/_default.cfg b/lgsm/config-default/config-lgsm/fctrserver/_default.cfg index 699a202fd..ed0968baa 100644 --- a/lgsm/config-default/config-lgsm/fctrserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/fctrserver/_default.cfg @@ -26,6 +26,9 @@ parms="--start-server ${serverfiles}/save1.zip --server-settings ${servercfgfull ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/fofserver/_default.cfg b/lgsm/config-default/config-lgsm/fofserver/_default.cfg index 4399350ac..4ae3ecb4c 100644 --- a/lgsm/config-default/config-lgsm/fofserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/fofserver/_default.cfg @@ -26,6 +26,9 @@ parms="-game fof -strictportbind -ip ${ip} -port ${port} +clientport ${clientpor ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/gesserver/_default.cfg b/lgsm/config-default/config-lgsm/gesserver/_default.cfg index f82d94bd5..3e049dc8b 100644 --- a/lgsm/config-default/config-lgsm/gesserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/gesserver/_default.cfg @@ -26,6 +26,9 @@ parms="-game gesource -strictportbind -ip ${ip} -port ${port} +clientport ${clie ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/gmodserver/_default.cfg b/lgsm/config-default/config-lgsm/gmodserver/_default.cfg index 8c6f09565..105694bbb 100644 --- a/lgsm/config-default/config-lgsm/gmodserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/gmodserver/_default.cfg @@ -42,6 +42,9 @@ parms="-game garrysmod -strictportbind -ip ${ip} -port ${port} -tickrate ${tickr ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/hl2dmserver/_default.cfg b/lgsm/config-default/config-lgsm/hl2dmserver/_default.cfg index 7c9bb9a43..d6cc0b37d 100644 --- a/lgsm/config-default/config-lgsm/hl2dmserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/hl2dmserver/_default.cfg @@ -26,6 +26,9 @@ parms="-game hl2mp -strictportbind -ip ${ip} -port ${port} +clientport ${clientp ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/hldmserver/_default.cfg b/lgsm/config-default/config-lgsm/hldmserver/_default.cfg index 25dcd4736..af8ec0a41 100644 --- a/lgsm/config-default/config-lgsm/hldmserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/hldmserver/_default.cfg @@ -25,6 +25,9 @@ parms="-game valve -strictportbind +ip ${ip} -port ${port} +clientport ${clientp ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/hldmsserver/_default.cfg b/lgsm/config-default/config-lgsm/hldmsserver/_default.cfg index 249b702fd..1c8b58bbd 100644 --- a/lgsm/config-default/config-lgsm/hldmsserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/hldmsserver/_default.cfg @@ -26,6 +26,9 @@ parms="-game hl1mp -strictportbind -ip ${ip} -port ${port} +clientport ${clientp ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/hwserver/_default.cfg b/lgsm/config-default/config-lgsm/hwserver/_default.cfg index 7006a0bbb..476bb2bd2 100644 --- a/lgsm/config-default/config-lgsm/hwserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/hwserver/_default.cfg @@ -37,6 +37,9 @@ parms="-batchmode -nographics -exec \"host ${port} ${defaultmap} ${loadsave};que ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/insserver/_default.cfg b/lgsm/config-default/config-lgsm/insserver/_default.cfg index 317444a82..a0f1471c2 100644 --- a/lgsm/config-default/config-lgsm/insserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/insserver/_default.cfg @@ -33,6 +33,9 @@ parms="-game insurgency -strictportbind -ip ${ip} -port ${port} +clientport ${cl ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/inssserver/_default.cfg b/lgsm/config-default/config-lgsm/inssserver/_default.cfg index 1ff1665f5..312f8826d 100644 --- a/lgsm/config-default/config-lgsm/inssserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/inssserver/_default.cfg @@ -34,6 +34,9 @@ fn_parms(){ ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/iosserver/_default.cfg b/lgsm/config-default/config-lgsm/iosserver/_default.cfg index 72021c0cf..fccbc13d9 100644 --- a/lgsm/config-default/config-lgsm/iosserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/iosserver/_default.cfg @@ -26,6 +26,9 @@ parms="-game iosoccer -strictportbind -ip ${ip} -port ${port} +clientport ${clie ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/jc2server/_default.cfg b/lgsm/config-default/config-lgsm/jc2server/_default.cfg index 44ce7a033..da1d34189 100644 --- a/lgsm/config-default/config-lgsm/jc2server/_default.cfg +++ b/lgsm/config-default/config-lgsm/jc2server/_default.cfg @@ -18,6 +18,9 @@ parms="" ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/jc3server/_default.cfg b/lgsm/config-default/config-lgsm/jc3server/_default.cfg index 5bfeb4b53..6992a1029 100644 --- a/lgsm/config-default/config-lgsm/jc3server/_default.cfg +++ b/lgsm/config-default/config-lgsm/jc3server/_default.cfg @@ -18,6 +18,9 @@ parms="" ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/kf2server/_default.cfg b/lgsm/config-default/config-lgsm/kf2server/_default.cfg index e84287456..9a8ab3329 100644 --- a/lgsm/config-default/config-lgsm/kf2server/_default.cfg +++ b/lgsm/config-default/config-lgsm/kf2server/_default.cfg @@ -24,6 +24,9 @@ parms="\"${defaultmap}?Game=${gamemode}?ConfigSubDir=${servicename} -QueryPort=$ ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/kfserver/_default.cfg b/lgsm/config-default/config-lgsm/kfserver/_default.cfg index 3bd2b572a..1f47ec58a 100644 --- a/lgsm/config-default/config-lgsm/kfserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/kfserver/_default.cfg @@ -30,6 +30,9 @@ parms="server ${defaultmap}?game=KFmod.KFGameType?VACSecured=true -nohomedir ini ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/l4d2server/_default.cfg b/lgsm/config-default/config-lgsm/l4d2server/_default.cfg index 0d9352588..b69a3e734 100644 --- a/lgsm/config-default/config-lgsm/l4d2server/_default.cfg +++ b/lgsm/config-default/config-lgsm/l4d2server/_default.cfg @@ -25,6 +25,9 @@ parms="-game left4dead2 -strictportbind -ip ${ip} -port ${port} +clientport ${cl ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/l4dserver/_default.cfg b/lgsm/config-default/config-lgsm/l4dserver/_default.cfg index 558291eec..9326ed808 100644 --- a/lgsm/config-default/config-lgsm/l4dserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/l4dserver/_default.cfg @@ -25,6 +25,9 @@ parms="-game left4dead -strictportbind -ip ${ip} -port ${port} +clientport ${cli ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/mcserver/_default.cfg b/lgsm/config-default/config-lgsm/mcserver/_default.cfg index 103de1620..6f737fcb2 100644 --- a/lgsm/config-default/config-lgsm/mcserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/mcserver/_default.cfg @@ -20,6 +20,9 @@ parms="nogui" ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/mtaserver/_default.cfg b/lgsm/config-default/config-lgsm/mtaserver/_default.cfg index 6af6c2d53..9fc6a08b0 100644 --- a/lgsm/config-default/config-lgsm/mtaserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/mtaserver/_default.cfg @@ -19,6 +19,9 @@ parms="" ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/mumbleserver/_default.cfg b/lgsm/config-default/config-lgsm/mumbleserver/_default.cfg index 0dcca762f..2ef9f3ee6 100644 --- a/lgsm/config-default/config-lgsm/mumbleserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/mumbleserver/_default.cfg @@ -19,6 +19,9 @@ parms="-fg -ini ${servercfgfullpath}" ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/ndserver/_default.cfg b/lgsm/config-default/config-lgsm/ndserver/_default.cfg index 5a96d0cdc..2c352d49b 100644 --- a/lgsm/config-default/config-lgsm/ndserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/ndserver/_default.cfg @@ -26,6 +26,9 @@ parms="-game nucleardawn -strictportbind -ip ${ip} -port ${port} +clientport ${c ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/nmrihserver/_default.cfg b/lgsm/config-default/config-lgsm/nmrihserver/_default.cfg index 4f5e37129..8b3edcc9e 100644 --- a/lgsm/config-default/config-lgsm/nmrihserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/nmrihserver/_default.cfg @@ -31,6 +31,9 @@ parms="-game nmrih -strictportbind -ip ${ip} -port ${port} +clientport ${clientp ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/ns2cserver/_default.cfg b/lgsm/config-default/config-lgsm/ns2cserver/_default.cfg index ba78da4b6..23c70c212 100644 --- a/lgsm/config-default/config-lgsm/ns2cserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/ns2cserver/_default.cfg @@ -33,6 +33,9 @@ parms="-name \"${servername}\" -port ${port} -webadmin -webdomain ${ip} -webuser ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/ns2server/_default.cfg b/lgsm/config-default/config-lgsm/ns2server/_default.cfg index 9e5e7044f..98c3bf3d4 100644 --- a/lgsm/config-default/config-lgsm/ns2server/_default.cfg +++ b/lgsm/config-default/config-lgsm/ns2server/_default.cfg @@ -37,6 +37,9 @@ parms="-name \"${servername}\" -port ${port} -webadmin -webdomain ${ip} -webuser ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/nsserver/_default.cfg b/lgsm/config-default/config-lgsm/nsserver/_default.cfg index 16e80a554..e7b40f0c2 100644 --- a/lgsm/config-default/config-lgsm/nsserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/nsserver/_default.cfg @@ -25,6 +25,9 @@ parms="-game ns -strictportbind +ip ${ip} -port ${port} +clientport ${clientport ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/opforserver/_default.cfg b/lgsm/config-default/config-lgsm/opforserver/_default.cfg index d9fc738e2..9d85f0049 100644 --- a/lgsm/config-default/config-lgsm/opforserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/opforserver/_default.cfg @@ -25,6 +25,9 @@ parms="-game gearbox -strictportbind +ip ${ip} -port ${port} +clientport ${clien ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/pcserver/_default.cfg b/lgsm/config-default/config-lgsm/pcserver/_default.cfg index d9ed6a032..fdf8db746 100644 --- a/lgsm/config-default/config-lgsm/pcserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/pcserver/_default.cfg @@ -18,6 +18,9 @@ parms="--config ${servercfg}" ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/pstbsserver/_default.cfg b/lgsm/config-default/config-lgsm/pstbsserver/_default.cfg index 997e57784..ce13b1ab3 100644 --- a/lgsm/config-default/config-lgsm/pstbsserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/pstbsserver/_default.cfg @@ -29,6 +29,9 @@ parms="MULTIHOME=${ip}?RANDOM=${randommap}?Port=${port}?QueryPort=${queryport}?M ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/pvkiiserver/_default.cfg b/lgsm/config-default/config-lgsm/pvkiiserver/_default.cfg index f853e8583..1d70816d2 100644 --- a/lgsm/config-default/config-lgsm/pvkiiserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/pvkiiserver/_default.cfg @@ -26,6 +26,9 @@ parms="-game pvkii -strictportbind -ip ${ip} -port ${port} +clientport ${clientp ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/pzserver/_default.cfg b/lgsm/config-default/config-lgsm/pzserver/_default.cfg index 8884ad99c..8b258cfe9 100644 --- a/lgsm/config-default/config-lgsm/pzserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/pzserver/_default.cfg @@ -21,6 +21,9 @@ parms="-ip ${ip} -adminpassword \"${adminpassword}\" -servername ${servicename}" ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/q2server/_default.cfg b/lgsm/config-default/config-lgsm/q2server/_default.cfg index ea597b8ef..c2ac3340e 100644 --- a/lgsm/config-default/config-lgsm/q2server/_default.cfg +++ b/lgsm/config-default/config-lgsm/q2server/_default.cfg @@ -23,6 +23,9 @@ parms="+set dedicated 1 +set ip ${ip} +set port ${port} +exec ${servercfg} +set ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/q3server/_default.cfg b/lgsm/config-default/config-lgsm/q3server/_default.cfg index 51c6aeed7..0c205c6b8 100644 --- a/lgsm/config-default/config-lgsm/q3server/_default.cfg +++ b/lgsm/config-default/config-lgsm/q3server/_default.cfg @@ -23,6 +23,9 @@ parms="+set sv_punkbuster 0 +set fs_basepath ${serverfiles} +set dedicated 2 +se ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/qlserver/_default.cfg b/lgsm/config-default/config-lgsm/qlserver/_default.cfg index b062c8860..01bd7950b 100644 --- a/lgsm/config-default/config-lgsm/qlserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/qlserver/_default.cfg @@ -20,6 +20,9 @@ parms="+exec ${servercfg}" ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/qwserver/_default.cfg b/lgsm/config-default/config-lgsm/qwserver/_default.cfg index 9a1abc2bd..b2ccd0af6 100644 --- a/lgsm/config-default/config-lgsm/qwserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/qwserver/_default.cfg @@ -22,6 +22,9 @@ parms="-port ${port} -game ktx +exec ${servercfg}" ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/ricochetserver/_default.cfg b/lgsm/config-default/config-lgsm/ricochetserver/_default.cfg index 44ee520b2..41ccda337 100644 --- a/lgsm/config-default/config-lgsm/ricochetserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/ricochetserver/_default.cfg @@ -25,6 +25,9 @@ parms="-game ricochet -strictportbind +ip ${ip} -port ${port} +clientport ${clie ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/roserver/_default.cfg b/lgsm/config-default/config-lgsm/roserver/_default.cfg index e4148ec75..dd4614682 100644 --- a/lgsm/config-default/config-lgsm/roserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/roserver/_default.cfg @@ -26,6 +26,9 @@ parms="server ${defaultmap}?game=ROGame.ROTeamGame?VACSecured=true -nohomedir in ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/rtcwserver/_default.cfg b/lgsm/config-default/config-lgsm/rtcwserver/_default.cfg index d875df5ca..012a86815 100644 --- a/lgsm/config-default/config-lgsm/rtcwserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/rtcwserver/_default.cfg @@ -23,6 +23,9 @@ parms="+set sv_punkbuster 0 +set fs_basepath ${serverfiles} +set dedicated 1 +se ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/rustserver/_default.cfg b/lgsm/config-default/config-lgsm/rustserver/_default.cfg index 4e7064ccf..a132a7585 100644 --- a/lgsm/config-default/config-lgsm/rustserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/rustserver/_default.cfg @@ -50,6 +50,9 @@ parms="-batchmode +server.ip ${ip} +server.port ${port} +server.tickrate ${tickr ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/rwserver/_default.cfg b/lgsm/config-default/config-lgsm/rwserver/_default.cfg index 0f8c9645b..358304664 100644 --- a/lgsm/config-default/config-lgsm/rwserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/rwserver/_default.cfg @@ -21,6 +21,9 @@ parms="" ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/sampserver/_default.cfg b/lgsm/config-default/config-lgsm/sampserver/_default.cfg index 1f878023b..ab54a20c1 100644 --- a/lgsm/config-default/config-lgsm/sampserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/sampserver/_default.cfg @@ -22,6 +22,9 @@ parms="" ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/sbotsserver/_default.cfg b/lgsm/config-default/config-lgsm/sbotsserver/_default.cfg index 9e32e5d43..847168d02 100644 --- a/lgsm/config-default/config-lgsm/sbotsserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/sbotsserver/_default.cfg @@ -26,6 +26,9 @@ parms="Port=${port}?QueryPort=${queryport} -startup_map ${defaultmap} -server_na ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/sbserver/_default.cfg b/lgsm/config-default/config-lgsm/sbserver/_default.cfg index 7de6bd3b5..bf7928642 100644 --- a/lgsm/config-default/config-lgsm/sbserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/sbserver/_default.cfg @@ -25,6 +25,9 @@ parms="" ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/sdtdserver/_default.cfg b/lgsm/config-default/config-lgsm/sdtdserver/_default.cfg index 38cffed24..59c408431 100644 --- a/lgsm/config-default/config-lgsm/sdtdserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/sdtdserver/_default.cfg @@ -21,6 +21,9 @@ parms="-logfile ${gamelogdir}/output_log__$(date +%Y-%m-%d__%H-%M-%S).txt -quit ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/sof2server/_default.cfg b/lgsm/config-default/config-lgsm/sof2server/_default.cfg index d0e5dc776..31d5c2306 100644 --- a/lgsm/config-default/config-lgsm/sof2server/_default.cfg +++ b/lgsm/config-default/config-lgsm/sof2server/_default.cfg @@ -23,6 +23,9 @@ parms="+set sv_punkbuster 0 +set dedicated 2 +set net_ip ${ip} +set net_port ${p ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/squadserver/_default.cfg b/lgsm/config-default/config-lgsm/squadserver/_default.cfg index 5254148cd..d9dd3b171 100644 --- a/lgsm/config-default/config-lgsm/squadserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/squadserver/_default.cfg @@ -23,6 +23,9 @@ parms="MULTIHOME=${ip} RANDOM=${randommap} Port=${port} QueryPort=${queryport}" ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/ss3server/_default.cfg b/lgsm/config-default/config-lgsm/ss3server/_default.cfg index af9df3a5a..496e11ce0 100644 --- a/lgsm/config-default/config-lgsm/ss3server/_default.cfg +++ b/lgsm/config-default/config-lgsm/ss3server/_default.cfg @@ -22,6 +22,9 @@ parms="+ip ${ip} +logfile ${gamelog} +exec ${servercfgfullpath}" ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/stserver/_default.cfg b/lgsm/config-default/config-lgsm/stserver/_default.cfg index a92271abd..9239d1b6c 100644 --- a/lgsm/config-default/config-lgsm/stserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/stserver/_default.cfg @@ -28,6 +28,9 @@ parms="-batchmode -nographics -autostart -gameport=${port} -updateport=${querypo ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/svenserver/_default.cfg b/lgsm/config-default/config-lgsm/svenserver/_default.cfg index 066b35e5c..7b0b2524d 100644 --- a/lgsm/config-default/config-lgsm/svenserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/svenserver/_default.cfg @@ -25,6 +25,9 @@ parms="-game svencoop -strictportbind +ip ${ip} -port ${port} +clientport ${clie ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/terrariaserver/_default.cfg b/lgsm/config-default/config-lgsm/terrariaserver/_default.cfg index 0f59b17c4..e064f10c1 100644 --- a/lgsm/config-default/config-lgsm/terrariaserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/terrariaserver/_default.cfg @@ -25,6 +25,9 @@ parms="-config ${servercfgfullpath}" ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/tf2server/_default.cfg b/lgsm/config-default/config-lgsm/tf2server/_default.cfg index fc2675a42..7399cb941 100644 --- a/lgsm/config-default/config-lgsm/tf2server/_default.cfg +++ b/lgsm/config-default/config-lgsm/tf2server/_default.cfg @@ -31,6 +31,9 @@ parms="-game tf -strictportbind -ip ${ip} -port ${port} +clientport ${clientport ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/tfcserver/_default.cfg b/lgsm/config-default/config-lgsm/tfcserver/_default.cfg index 753dce496..adfe3b56d 100644 --- a/lgsm/config-default/config-lgsm/tfcserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/tfcserver/_default.cfg @@ -25,6 +25,9 @@ parms="-game tfc -strictportbind _ip ${ip} -port ${port} +clientport ${clientpor ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/ts3server/_default.cfg b/lgsm/config-default/config-lgsm/ts3server/_default.cfg index 871fe71bc..6c6b116cd 100644 --- a/lgsm/config-default/config-lgsm/ts3server/_default.cfg +++ b/lgsm/config-default/config-lgsm/ts3server/_default.cfg @@ -14,6 +14,9 @@ ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/tuserver/_default.cfg b/lgsm/config-default/config-lgsm/tuserver/_default.cfg index b3277fc37..8397e826d 100644 --- a/lgsm/config-default/config-lgsm/tuserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/tuserver/_default.cfg @@ -28,6 +28,9 @@ parms="-log -MultiHome=${ip} -Port=${port} -QueryPort=${queryport} -TowerServerI ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/twserver/_default.cfg b/lgsm/config-default/config-lgsm/twserver/_default.cfg index 3dbed4eff..e655aa023 100644 --- a/lgsm/config-default/config-lgsm/twserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/twserver/_default.cfg @@ -25,6 +25,9 @@ parms="-f ${servercfg}" ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/ut2k4server/_default.cfg b/lgsm/config-default/config-lgsm/ut2k4server/_default.cfg index af9e9d630..390eb3b47 100644 --- a/lgsm/config-default/config-lgsm/ut2k4server/_default.cfg +++ b/lgsm/config-default/config-lgsm/ut2k4server/_default.cfg @@ -22,6 +22,9 @@ parms="server ${defaultmap}?game=XGame.xDeathMatch -nohomedir ini=${servercfg} l ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/ut3server/_default.cfg b/lgsm/config-default/config-lgsm/ut3server/_default.cfg index 3606d79ec..8afab880c 100644 --- a/lgsm/config-default/config-lgsm/ut3server/_default.cfg +++ b/lgsm/config-default/config-lgsm/ut3server/_default.cfg @@ -33,6 +33,9 @@ parms="server ${defaultmap}?Game=${game}?bIsDedicated=${isdedicated}?bIsLanMatch ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/ut99server/_default.cfg b/lgsm/config-default/config-lgsm/ut99server/_default.cfg index 627a4bdf4..ee45795dd 100644 --- a/lgsm/config-default/config-lgsm/ut99server/_default.cfg +++ b/lgsm/config-default/config-lgsm/ut99server/_default.cfg @@ -22,6 +22,9 @@ parms="server ${defaultmap}.unr ini=${servercfgfullpath}" ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/utserver/_default.cfg b/lgsm/config-default/config-lgsm/utserver/_default.cfg index 6bda1840b..027012b8e 100644 --- a/lgsm/config-default/config-lgsm/utserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/utserver/_default.cfg @@ -26,6 +26,9 @@ parms="UnrealTournament ${defaultmap}?Game=${gametype}?TimeLimit=${timelimit} -p ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/vsserver/_default.cfg b/lgsm/config-default/config-lgsm/vsserver/_default.cfg index 1672d0d72..b21d1d7b4 100644 --- a/lgsm/config-default/config-lgsm/vsserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/vsserver/_default.cfg @@ -25,6 +25,9 @@ parms="-game vs -strictportbind +ip ${ip} -port ${port} +clientport ${clientport ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/wetserver/_default.cfg b/lgsm/config-default/config-lgsm/wetserver/_default.cfg index 8c063de0a..2525bc8b3 100644 --- a/lgsm/config-default/config-lgsm/wetserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/wetserver/_default.cfg @@ -18,6 +18,9 @@ fn_parms(){ ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/wurmserver/_default.cfg b/lgsm/config-default/config-lgsm/wurmserver/_default.cfg index 862215212..fb19f13fb 100644 --- a/lgsm/config-default/config-lgsm/wurmserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/wurmserver/_default.cfg @@ -20,6 +20,9 @@ fn_parms(){ ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/config-default/config-lgsm/zpsserver/_default.cfg b/lgsm/config-default/config-lgsm/zpsserver/_default.cfg index 3c4e0285a..e9aa313fc 100644 --- a/lgsm/config-default/config-lgsm/zpsserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/zpsserver/_default.cfg @@ -31,6 +31,9 @@ parms="-game zps -strictportbind -ip ${ip} -port ${port} +clientport ${clientpor ## Notification Alerts # (on|off) +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + # More info | https://docs.linuxgsm.com/alerts#more-info postalert="off" postdays="7" diff --git a/lgsm/functions/alert_discord.sh b/lgsm/functions/alert_discord.sh index 2ace8935f..0d4b22123 100644 --- a/lgsm/functions/alert_discord.sh +++ b/lgsm/functions/alert_discord.sh @@ -35,7 +35,7 @@ json=$(cat <${alertsubject} ${alertemoji}\n\nMessage\n${alertbody}\n\nGame\n${gamename}\n\nServer name\n${servername}\n\nHostname\n${HOSTNAME}\n\nServer IP\n${extip:-$ip}:${port}\n\nMore info\n${alerturl}", + "text": "${alertemoji} ${alertsubject} ${alertemoji}\n\nMessage\n${alertbody}\n\nGame\n${gamename}\n\nServer name\n${servername}\n\nHostname\n${HOSTNAME}\n\nServer IP\n${alertip}:${port}\n\nMore info\n${alerturl}", "disable_web_page_preview": "yes", EOF ) diff --git a/lgsm/functions/info_distro.sh b/lgsm/functions/info_distro.sh index 711b14ba5..8100feb97 100644 --- a/lgsm/functions/info_distro.sh +++ b/lgsm/functions/info_distro.sh @@ -222,6 +222,15 @@ if [ -z "${extip}" ]; then fi fi +# Alert IP address +if [ "${displayip}" ]; then + alertip="${displayip}" +elif [ "${extip}" ]; then + alertip="${extip}" +else + alertip="${ip}" +fi + # Steam Master Server - checks if detected by master server if [ "$(command -v jq 2>/dev/null)" ]; then if [ "${ip}" ]&&[ "${port}" ]; then diff --git a/lgsm/functions/info_messages.sh b/lgsm/functions/info_messages.sh index 4c1b960c4..d8f7abd63 100644 --- a/lgsm/functions/info_messages.sh +++ b/lgsm/functions/info_messages.sh @@ -155,13 +155,18 @@ fn_info_message_gameserver(){ echo -e "${blue}Server IP:\t${default}${ip}:${port}" fi - # External server ip + # Internet ip if [ -n "${extip}" ]; then if [ "${ip}" != "${extip}" ]; then echo -e "${blue}Internet IP:\t${default}${extip}:${port}" fi fi + # Display ip + if [ -n "${displayip}" ]; then + echo -e "${blue}Display IP:\t${default}${displayip}:${port}" + fi + # Server password if [ -n "${serverpassword}" ]; then echo -e "${blue}Server password:\t${default}${serverpassword}" From e0acffad80a880da6d4dfbbd8107e0418e82266c Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Thu, 13 Jun 2019 19:36:32 +0100 Subject: [PATCH 14/20] feat: Refactor comments to follow standards (#2389) --- lgsm/functions/alert.sh | 4 +- lgsm/functions/alert_pushover.sh | 4 +- lgsm/functions/check.sh | 4 +- lgsm/functions/check_deps.sh | 73 ++++---- lgsm/functions/check_ip.sh | 12 +- lgsm/functions/check_logs.sh | 6 +- lgsm/functions/check_permissions.sh | 58 +++--- lgsm/functions/check_steamcmd.sh | 2 +- lgsm/functions/check_system_requirements.sh | 2 +- lgsm/functions/command_backup.sh | 64 +++---- lgsm/functions/command_debug.sh | 18 +- lgsm/functions/command_dev_detect_deps.sh | 4 +- lgsm/functions/command_fastdl.sh | 54 +++--- lgsm/functions/command_install.sh | 4 +- lgsm/functions/command_mods_install.sh | 32 ++-- lgsm/functions/command_mods_remove.sh | 30 +-- lgsm/functions/command_mods_update.sh | 32 ++-- lgsm/functions/command_postdetails.sh | 8 +- lgsm/functions/command_start.sh | 35 ++-- lgsm/functions/command_stop.sh | 63 +++---- lgsm/functions/command_ts3_server_pass.sh | 6 +- lgsm/functions/command_update_linuxgsm.sh | 4 +- lgsm/functions/command_wipe.sh | 46 ++--- lgsm/functions/core_getopt.sh | 70 +++---- lgsm/functions/core_legacy.sh | 4 +- lgsm/functions/core_messages.sh | 6 +- lgsm/functions/fix.sh | 4 +- lgsm/functions/fix_coduo.sh | 3 +- lgsm/functions/fix_dst.sh | 2 +- lgsm/functions/fix_rust.sh | 2 +- lgsm/functions/fix_ts3.sh | 4 +- lgsm/functions/fix_unt.sh | 2 +- lgsm/functions/fix_wurm.sh | 8 +- lgsm/functions/info_config.sh | 2 +- lgsm/functions/info_distro.sh | 18 +- lgsm/functions/install_config.sh | 16 +- lgsm/functions/install_logs.sh | 10 +- lgsm/functions/install_server_files.sh | 10 +- lgsm/functions/install_ts3db.sh | 1 - lgsm/functions/logs.sh | 30 +-- lgsm/functions/mods_core.sh | 184 +++++++++--------- lgsm/functions/query_gamedig.sh | 28 +-- linuxgsm.sh | 81 ++++---- tests/tests_fctrserver.sh | 196 ++++++++++--------- tests/tests_jc2server.sh | 197 +++++++++++--------- tests/tests_mcserver.sh | 197 +++++++++++--------- tests/tests_ts3server.sh | 197 +++++++++++--------- 47 files changed, 962 insertions(+), 875 deletions(-) diff --git a/lgsm/functions/alert.sh b/lgsm/functions/alert.sh index 3a7bf2604..a5b753f0d 100644 --- a/lgsm/functions/alert.sh +++ b/lgsm/functions/alert.sh @@ -93,10 +93,10 @@ elif [ "${alert}" == "config" ]; then fn_alert_config fi -# Generate alert log +# Generate alert log. fn_alert_log -# Generates the more info link +# Generates the more info link. if [ "${postalert}" == "on" ]&&[ -n "${postalert}" ]; then alertflag=1 command_postdetails.sh diff --git a/lgsm/functions/alert_pushover.sh b/lgsm/functions/alert_pushover.sh index 8bba73ee7..1eab80df5 100644 --- a/lgsm/functions/alert_pushover.sh +++ b/lgsm/functions/alert_pushover.sh @@ -10,12 +10,12 @@ local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" fn_print_dots "Sending Pushover alert" -# Different alerts are given different priorities and notification sounds +# Different alerts are given different priorities and notification sounds. if [ "${alertsound}" == "1" ]; then alertsound="" alertpriority="0" elif [ "${alertsound}" == "2" ]; then - # restarted + # restarted. alertsound="siren" alertpriority="1" else diff --git a/lgsm/functions/check.sh b/lgsm/functions/check.sh index 0a1768884..21e63aca4 100644 --- a/lgsm/functions/check.sh +++ b/lgsm/functions/check.sh @@ -7,8 +7,8 @@ local commandname="CHECK" -# Every command that requires checks just references check.sh -# check.sh selects which checks to run by using arrays +# Every command that requires checks just references check.sh. +# check.sh selects which checks to run by using arrays. if [ "${userinput}" != "install" ]&&[ "${userinput}" != "auto-install" ]&&[ "${userinput}" != "i" ]&&[ "${userinput}" != "ai" ]; then check_root.sh diff --git a/lgsm/functions/check_deps.sh b/lgsm/functions/check_deps.sh index d69926f8f..45423ec2d 100644 --- a/lgsm/functions/check_deps.sh +++ b/lgsm/functions/check_deps.sh @@ -102,7 +102,7 @@ fn_install_mono_repo(){ } fn_install_universe_repo(){ - # Defensive coding - As this is an ubuntu only issue then check to make sure this fix is needed, and we are using ubuntu + # Defensive coding - As this is an ubuntu only issue then check to make sure this fix is needed, and we are using ubuntu. if [ "${jquniversemissing}" != "0" ]&&[ "${distroid}" == "ubuntu" ]; then fn_print_warning_nl "Ubuntu 18.04.1 contains a bug which means the sources.list file does not populate with the Ubuntu universe repository." fn_print_information_nl "Attempting to add Universe Repo" @@ -138,7 +138,7 @@ fn_install_universe_repo(){ } fn_deps_detector(){ - # Checks if dependency is missing + # Checks if dependency is missing. if [ "${tmuxcheck}" == "1" ]; then # Added for users compiling tmux from source to bypass check. depstatus=0 @@ -152,16 +152,16 @@ fn_deps_detector(){ elif [ "${deptocheck}" == "jq" ]&&[ "${distroversion}" == "6" ]; then jqstatus=1 elif [ "${deptocheck}" == "jq" ]&&[ "${distroid}" == "ubuntu" ]&&[ "${distroversion}" == "18.04" ]&& ! grep -qE "^deb .*universe" /etc/apt/sources.list; then - #1985 ubuntu 18.04.1 bug does not set sources.list correctly which means universe is not active by default - #If the universe repo does not exist, mark as dependency missing and universe missing + # #1985 ubuntu 18.04.1 bug does not set sources.list correctly which means universe is not active by default + # If the universe repo does not exist, mark as dependency missing and universe missing. depstatus=1 jquniversemissing=1 elif [ "${deptocheck}" == "mono-complete" ]; then if [ "$(command -v mono 2>/dev/null)" ]&&[ "$(mono --version 2>&1 | grep -Po '(?<=version )\d')" -ge 5 ]; then - # Mono >= 5.0.0 already installed + # Mono >= 5.0.0 already installed. depstatus=0 else - # Mono not installed or installed Mono < 5.0.0 + # Mono not installed or installed Mono < 5.0.0. depstatus=1 monostatus=1 fi @@ -174,20 +174,20 @@ fn_deps_detector(){ fi if [ "${depstatus}" == "0" ]; then - # if dependency is found + # If dependency is found. missingdep=0 if [ "${function_selfname}" == "command_install.sh" ]; then echo -e "${green}${deptocheck}${default}" fn_sleep_time fi else - # if dependency is not found + # If dependency is not found. missingdep=1 if [ "${function_selfname}" == "command_install.sh" ]; then echo -e "${red}${deptocheck}${default}" fn_sleep_time fi - # Define required dependencies for SteamCMD + # Define required dependencies for SteamCMD. if [ -n "${appid}" ]; then if [ "${deptocheck}" == "glibc.i686" ]||[ "${deptocheck}" == "libstdc++64.i686" ]||[ "${deptocheck}" == "lib32gcc1" ]||[ "${deptocheck}" == "libstdc++6:i386" ]; then steamcmdfail=1 @@ -195,14 +195,14 @@ fn_deps_detector(){ fi fi - # Missing dependencies are added to array_deps_missing + # Missing dependencies are added to array_deps_missing. if [ "${missingdep}" == "1" ]; then array_deps_missing+=("${deptocheck}") fi } fn_deps_email(){ - # Adds postfix to required dependencies if email alert is enabled + # Adds postfix to required dependencies if email alert is enabled. if [ "${emailalert}" == "on" ]; then if [ -f /usr/bin/mailx ]; then if [ -d /etc/exim4 ]; then @@ -316,25 +316,25 @@ fn_found_missing_deps(){ } fn_check_loop(){ - # Loop though required depenencies + # Loop though required depenencies. for deptocheck in "${array_deps_required[@]}" do fn_deps_detector done - # user to be informed of any missing dependencies + # user to be informed of any missing dependencies. fn_found_missing_deps } -# Generate require dependencies for debian based systems +# Generate require dependencies for debian based systems. fn_deps_build_debian(){ - # Generate array of missing deps + # Generate array of missing deps. array_deps_missing=() - ## LinuxGSM requirements + # LinuxGSM requirements. array_deps_required=( curl wget ca-certificates file bsdmainutils util-linux python bzip2 gzip unzip binutils bc jq ) - # All servers except ts3 require tmux + # All servers except ts3 require tmux. if [ "${shortname}" != "ts3" ]; then if [ "$(command -v tmux 2>/dev/null)" ]; then tmuxcheck=1 # Added for users compiling tmux from source to bypass check. @@ -343,7 +343,7 @@ fn_deps_build_debian(){ fi fi - # All servers except ts3, mumble, GTA and minecraft servers require libstdc++6 and lib32gcc1 + # All servers except ts3, mumble, GTA and minecraft servers require libstdc++6 and lib32gcc1. if [ "${shortname}" != "ts3" ]&&[ "${shortname}" != "mumble" ]&&[ "${shortname}" != "mc" ]&&[ "${engine}" != "renderware" ]; then if [ "${arch}" == "x86_64" ]; then array_deps_required+=( lib32gcc1 libstdc++6:i386 ) @@ -352,9 +352,9 @@ fn_deps_build_debian(){ fi fi - ## Game Specific requirements + # Game Specific requirements. - # Natural Selection 2 - x64 only + # Natural Selection 2 - x64 only. if [ "${shortname}" == "ns2" ]; then array_deps_required+=( speex libtbb2 ) # NS2: Combat @@ -392,14 +392,16 @@ fn_deps_build_debian(){ elif [ "${shortname}" == "mc" ]; then javaversion=$(java -version 2>&1 | grep "version") if [ "${javaversion}" ]; then - javacheck=1 # Added for users using Oracle JRE to bypass the check. + # Added for users using Oracle JRE to bypass the check. + javacheck=1 else array_deps_required+=( openjdk-8-jre-headless ) fi # Project Zomboid elif [ "${shortname}" == "pz" ]; then if [ -n "$(java -version 2>&1 | grep "version")" ]; then - javacheck=1 # Added for users using Oracle JRE to bypass the check. + # Added for users using Oracle JRE to bypass the check. + javacheck=1 array_deps_required+=( rng-tools ) else array_deps_required+=( default-jre rng-tools ) @@ -415,10 +417,10 @@ fn_deps_build_debian(){ array_deps_required+=( libssl1.0.0:i386 zlib1g:i386 ) # Unreal Engine elif [ "${executable}" == "./ucc-bin" ]; then - #UT2K4 + # UT2K4 if [ -f "${executabledir}/ut2004-bin" ]; then array_deps_required+=( libsdl1.2debian libstdc++5:i386 ) - #UT99 + # UT99 else array_deps_required+=( libsdl1.2debian ) fi @@ -437,11 +439,11 @@ fn_deps_build_debian(){ } fn_deps_build_redhat(){ - # Generate array of missing deps + # Generate array of missing deps. array_deps_missing=() - # LinuxGSM requirements - ## CentOS 6 + # LinuxGSM requirements. + # CentOS 6 if [ "${distroversion}" == "6" ]; then array_deps_required=( epel-release curl wget util-linux-ng python file gzip bzip2 unzip binutils bc jq ) elif [ "${distroversion}" == "7" ]; then @@ -454,16 +456,17 @@ fn_deps_build_redhat(){ array_deps_required=( curl wget util-linux python file gzip bzip2 unzip binutils bc jq ) fi - # All servers except ts3 require tmux + # All servers except ts3 require tmux. if [ "${shortname}" != "ts3" ]; then if [ "$(command -v tmux 2>/dev/null)" ]; then - tmuxcheck=1 # Added for users compiling tmux from source to bypass check. + # Added for users compiling tmux from source to bypass check. + tmuxcheck=1 else array_deps_required+=( tmux ) fi fi - # All servers except ts3,mumble,multitheftauto and minecraft servers require glibc.i686 and libstdc++.i686 + # All servers except ts3, mumble, multi theft auto and minecraft servers require glibc.i686 and libstdc++.i686. if [ "${shortname}" != "ts3" ]&&[ "${shortname}" != "mumble" ]&&[ "${shortname}" != "mc" ]&&[ "${engine}" != "renderware" ]; then if [[ "${distroname}" == *"Amazon Linux AMI"* ]]; then array_deps_required+=( glibc.i686 libstdc++64.i686 ) @@ -472,7 +475,7 @@ fn_deps_build_redhat(){ fi fi - # Game Specific requirements + # Game Specific requirements. # Natural Selection 2 (x64 only) if [ "${shortname}" == "ns2" ]; then @@ -507,7 +510,8 @@ fn_deps_build_redhat(){ elif [ "${shortname}" == "mc" ]; then javaversion=$(java -version 2>&1 | grep "version") if [ "${javaversion}" ]; then - javacheck=1 # Added for users using Oracle JRE to bypass the check. + # Added for users using Oracle JRE to bypass the check. + javacheck=1 array_deps_required+=( rng-tools ) else array_deps_required+=( java-1.8.0-openjdk rng-tools ) @@ -516,7 +520,8 @@ fn_deps_build_redhat(){ elif [ "${shortname}" == "pz" ]; then javaversion=$(java -version 2>&1 | grep "version") if [ "${javaversion}" ]; then - javacheck=1 # Added for users using Oracle JRE to bypass the check. + # Added for users using Oracle JRE to bypass the check. + javacheck=1 array_deps_required+=( rng-tools ) else array_deps_required+=( java-1.8.0-openjdk rng-tools ) @@ -559,7 +564,7 @@ if [ "${function_selfname}" == "command_install.sh" ]; then fi fi -# Filter checking in to Debian or Red Hat Based +# Filter checking in to Debian or Red Hat Based. info_distro.sh if [ -f "/etc/debian_version" ]; then fn_deps_build_debian diff --git a/lgsm/functions/check_ip.sh b/lgsm/functions/check_ip.sh index d9390ac0e..b54dddd16 100644 --- a/lgsm/functions/check_ip.sh +++ b/lgsm/functions/check_ip.sh @@ -18,10 +18,10 @@ if [ "${shortname}" != "ts3" ]&&[ "${shortname}" != "mumble" ]&&[ "${travistest} info_config.sh info_parms.sh - # IP is not set to specific IP + # IP is not set to specific IP. if [ "${ip}" == "0.0.0.0" ]||[ "${ip}" == "" ]; then fn_print_dots "Check IP" - # Multiple interfaces + # Multiple interfaces. if [ "${getipwc}" -ge "2" ]; then if [ "${function_selfname}" == "command_details.sh" ]; then fn_print_warn "Check IP: Multiple IP addresses found." @@ -29,7 +29,7 @@ if [ "${shortname}" != "ts3" ]&&[ "${shortname}" != "mumble" ]&&[ "${travistest} fn_print_fail "Check IP: Multiple IP addresses found." fi echo -en "\n" - # IP is set within game config + # IP is set within game config. if [ "${ipsetinconfig}" == "1" ]; then fn_print_information "Specify the IP you want to bind within ${servercfg}.\n" echo -en " * location: ${servercfgfullpath}\n" @@ -37,7 +37,7 @@ if [ "${shortname}" != "ts3" ]&&[ "${shortname}" != "mumble" ]&&[ "${travistest} echo -en "Set ${ipinconfigvar} to one of the following:\n" fn_script_log_fatal "Multiple IP addresses found." fn_script_log_fatal "Specify the IP you want to bind within: ${servercfgfullpath}." - # IP is set within LinuxGSM config + # IP is set within LinuxGSM config. else fn_print_information_nl "Specify the IP you want to bind within a LinuxGSM config file.\n" echo -en " * location: ${configdirserver}\n" @@ -54,14 +54,14 @@ if [ "${shortname}" != "ts3" ]&&[ "${shortname}" != "mumble" ]&&[ "${travistest} echo -en "\n" echo -en "https://linuxgsm.com/network-interfaces\n" echo -en "" - # Do not exit for details and postdetails commands + # Do not exit for details and postdetails commands. if [ "${function_selfname}" != "command_details.sh" ]||[ "${function_selfname}" != "command_postdetails.sh" ]; then fn_script_log_fatal "https://linuxgsm.com/network-interfaces\n" core_exit.sh else ip="NOT SET" fi - # Single interface + # Single interface. elif [ "${ipsetinconfig}" == "1" ]; then fn_print_fail "Check IP: IP address not set in game config." echo -en "\n" diff --git a/lgsm/functions/check_logs.sh b/lgsm/functions/check_logs.sh index 1a71f3dfd..9f3e87427 100644 --- a/lgsm/functions/check_logs.sh +++ b/lgsm/functions/check_logs.sh @@ -14,13 +14,13 @@ fn_check_logs(){ install_logs.sh } -# Create directories for the script and console logs +# Create directories for the script and console logs. if [ ! -d "${lgsmlogdir}" ]||[ ! -d "${consolelogdir}" ]&&[ "${shortname}" != "ts3" ]; then fn_check_logs fi -# Create gamelogdir -# If variable exists gamelogdir exists and log/server does not +# Create gamelogdir. +# If variable exists gamelogdir exists and log/server does not. if [ -n "${gamelogdir}" ]&&[ -d "${gamelogdir}" ]&&[ ! -d "${logdir}/server" ]; then fn_check_logs fi diff --git a/lgsm/functions/check_permissions.sh b/lgsm/functions/check_permissions.sh index e1c0cabd7..77dfd1b5b 100644 --- a/lgsm/functions/check_permissions.sh +++ b/lgsm/functions/check_permissions.sh @@ -71,11 +71,11 @@ fn_check_permissions(){ fi fi - # Check rootdir permissions + # Check rootdir permissions. if [ -n "${rootdir}" ]; then - # Get permission numbers on directory under the form 775 + # Get permission numbers on directory under the form 775. rootdirperm="$(stat -c %a "${rootdir}")" - # Grab the first and second digit for user and group permission + # Grab the first and second digit for user and group permission. userrootdirperm="${rootdirperm:0:1}" grouprootdirperm="${rootdirperm:1:1}" if [ "${userrootdirperm}" != "7" ]&&[ "${grouprootdirperm}" != "7" ]; then @@ -92,20 +92,20 @@ fn_check_permissions(){ core_exit.sh fi fi - # Check if executable is executable and attempt to fix it - # First get executable name + # Check if executable is executable and attempt to fix it. + # First get executable name. execname="$(basename "${executable}")" if [ -f "${executabledir}/${execname}" ]; then - # Get permission numbers on file under the form 775 + # Get permission numbers on file under the form 775. execperm="$(stat -c %a "${executabledir}/${execname}")" - # Grab the first and second digit for user and group permission + # Grab the first and second digit for user and group permission. userexecperm="${execperm:0:1}" groupexecperm="${execperm:1:1}" - # Check for invalid user permission + # Check for invalid user permission. if [ "${userexecperm}" == "0" ]||[ "${userexecperm}" == "2" ]||[ "${userexecperm}" == "4" ]||[ "${userexecperm}" == "6" ]; then - # If user permission is invalid, then check for invalid group permissions + # If user permission is invalid, then check for invalid group permissions. if [ "${groupexecperm}" == "0" ]||[ "${groupexecperm}" == "2" ]||[ "${groupexecperm}" == "4" ]||[ "${groupexecperm}" == "6" ]; then - # If permission issues are found + # If permission issues are found. fn_print_warn_nl "Permissions issue found" fn_script_log_warn "Permissions issue found" fn_print_information_nl "The following file is not executable:" @@ -114,17 +114,17 @@ fn_check_permissions(){ fn_script_log_info "${executabledir}/${execname}" fn_print_information_nl "Applying chmod u+x,g+x ${executabledir}/${execname}" fn_script_log_info "Applying chmod u+x,g+x ${execperm}" - # Make the executable executable + # Make the executable executable. chmod u+x,g+x "${executabledir}/${execname}" - # Second check to see if it's been successfully applied - # Get permission numbers on file under the form 775 + # Second check to see if it's been successfully applied. + # Get permission numbers on file under the form 775. execperm="$(stat -c %a "${executabledir}/${execname}")" - # Grab the first and second digit for user and group permission + # Grab the first and second digit for user and group permission. userexecperm="${execperm:0:1}" groupexecperm="${execperm:1:1}" if [ "${userexecperm}" == "0" ]||[ "${userexecperm}" == "2" ]||[ "${userexecperm}" == "4" ]||[ "${userexecperm}" == "6" ]; then if [ "${groupexecperm}" == "0" ]||[ "${groupexecperm}" == "2" ]||[ "${groupexecperm}" == "4" ]||[ "${groupexecperm}" == "6" ]; then - # If errors are still found + # If errors are still found. fn_print_fail_nl "The following file could not be set executable:" ls -l "${executabledir}/${execname}" fn_script_log_warn "The following file could not be set executable:" @@ -141,16 +141,16 @@ fn_check_permissions(){ fi } -## The following fn_sys_perm_* functions checks for permission errors in /sys directory +## The following fn_sys_perm_* functions checks for permission errors in /sys directory. -# Checks for permission errors in /sys directory +# Checks for permission errors in /sys directory. fn_sys_perm_errors_detect(){ - # Reset test variables + # Reset test variables. sysdirpermerror="0" classdirpermerror="0" netdirpermerror="0" - # Check permissions - # /sys, /sys/class and /sys/class/net should be readable & executable + # Check permissions/ + # /sys, /sys/class and /sys/class/net should be readable & executable. if [ ! -r "/sys" ]||[ ! -x "/sys" ]; then sysdirpermerror="1" fi @@ -162,7 +162,7 @@ fn_sys_perm_errors_detect(){ fi } -# Display a message on how to fix the issue manually +# Display a message on how to fix the issue manually. fn_sys_perm_fix_manually_msg(){ echo "" fn_print_information_nl "This error causes servers to fail starting properly" @@ -179,7 +179,7 @@ fn_sys_perm_fix_manually_msg(){ core_exit.sh } -# Attempt to fix /sys related permission errors if sudo is available, exits otherwise +# Attempt to fix /sys related permission errors if sudo is available, exits otherwise. fn_sys_perm_errors_fix(){ sudo -n true > /dev/null 2>&1 if [ $? -eq 0 ]; then @@ -194,28 +194,28 @@ fn_sys_perm_errors_fix(){ if [ "${netdirpermerror}" == "1" ]; then sudo chmod a+rx "/sys/class/net" fi - # Run check again to see if it's fixed + # Run check again to see if it's fixed. fn_sys_perm_errors_detect if [ "${sysdirpermerror}" == "1" ]||[ "${classdirpermerror}" == "1" ]||[ "${netdirpermerror}" == "1" ]; then fn_print_error "Could not fix /sys permissions" fn_script_log_error "Could not fix /sys permissions." fn_sleep_time - # Show the user how to fix + # Show the user how to fix. fn_sys_perm_fix_manually_msg else fn_print_ok_nl "Automatically fixing /sys permissions" fn_script_log_pass "Permissions in /sys fixed" fi else - # Show the user how to fix + # Show the user how to fix. fn_sys_perm_fix_manually_msg fi } -# Processes to the /sys related permission errors check & fix/info +# Processes to the /sys related permission errors check & fix/info. fn_sys_perm_error_process(){ fn_sys_perm_errors_detect - # If any error was found + # If any error was found. if [ "${sysdirpermerror}" == "1" ]||[ "${classdirpermerror}" == "1" ]||[ "${netdirpermerror}" == "1" ]; then fn_print_error_nl "Permission error(s) found in /sys" fn_script_log_error "Permission error(s) found in /sys" @@ -224,9 +224,9 @@ fn_sys_perm_error_process(){ fi } -# Run perm error detect & fix/alert functions on /sys directories +# Run perm error detect & fix/alert functions on /sys directories. -## Run checks +## Run checks. if [ "$(whoami)" != "root" ]; then fn_check_ownership fn_check_permissions diff --git a/lgsm/functions/check_steamcmd.sh b/lgsm/functions/check_steamcmd.sh index 518696e0e..2972ae71d 100644 --- a/lgsm/functions/check_steamcmd.sh +++ b/lgsm/functions/check_steamcmd.sh @@ -33,7 +33,7 @@ fn_check_steamcmd_user(){ fi core_exit.sh fi - # Anonymous user is set if steamuser is missing + # Anonymous user is set if steamuser is missing. if [ -z "${steamuser}" ]; then if [ -d "${lgsmlogdir}" ]; then fn_script_log_info "Using anonymous Steam login" diff --git a/lgsm/functions/check_system_requirements.sh b/lgsm/functions/check_system_requirements.sh index d0cf9bf8d..bc2317f48 100644 --- a/lgsm/functions/check_system_requirements.sh +++ b/lgsm/functions/check_system_requirements.sh @@ -42,7 +42,7 @@ fi if [ -n "${ramrequirementmb}" ]; then if [ "${physmemtotalmb}" -lt "${ramrequirementmb}" ]; then fn_print_dots "Check RAM" - # Warn the user + # Warn the user. fn_print_warn_nl "Check RAM: ${ramrequirementgb}G required, ${physmemtotal} available" echo " * ${gamename} server may fail to run or experience poor performance." fn_sleep_time diff --git a/lgsm/functions/command_backup.sh b/lgsm/functions/command_backup.sh index c5530440d..de5a11aff 100644 --- a/lgsm/functions/command_backup.sh +++ b/lgsm/functions/command_backup.sh @@ -21,12 +21,12 @@ fn_backup_trap(){ echo -en "backup ${backupname}.tar.gz..." fn_print_removed_eol_nl fn_script_log_info "Backup ${backupname}.tar.gz: REMOVED" - # Remove lock file + # Remove lock file. rm -f "${tmpdir}/.backup.lock" core_exit.sh } -# Check if a backup is pending or has been aborted using .backup.lock +# Check if a backup is pending or has been aborted using .backup.lock. fn_backup_check_lockfile(){ if [ -f "${tmpdir}/.backup.lock" ]; then fn_print_info_nl "Lock file found: Backup is currently running" @@ -35,9 +35,9 @@ fn_backup_check_lockfile(){ fi } -# Initialisation +# Initialisation. fn_backup_init(){ - # Backup file name with servicename and current date + # Backup file name with servicename and current date. backupname="${servicename}-$(date '+%Y-%m-%d-%H%M%S')" info_distro.sh @@ -58,20 +58,20 @@ fn_backup_init(){ fi } -# Check if server is started and whether to stop it +# Check if server is started and whether to stop it. fn_backup_stop_server(){ check_status.sh - # Server is stopped + # Server is stopped. if [ "${status}" == "0" ]; then serverstopped="no" - # Server is running and stoponbackup=off + # Server is running and stoponbackup=off. elif [ "${stoponbackup}" == "off" ]; then serverstopped="no" fn_print_warn_nl "${servicename} is currently running" echo " * Although unlikely; creating a backup while ${servicename} is running might corrupt the backup." fn_script_log_warn "${servicename} is currently running" fn_script_log_warn "Although unlikely; creating a backup while ${servicename} is running might corrupt the backup" - # Server is running and will be stopped if stoponbackup=on or unset + # Server is running and will be stopped if stoponbackup=on or unset. else fn_print_warn_nl "${servicename} will be stopped during the backup" fn_script_log_warn "${servicename} will be stopped during the backup" @@ -81,16 +81,16 @@ fn_backup_stop_server(){ fi } -# Create required folders +# Create required folders. fn_backup_dir(){ - # Create backupdir if it doesn't exist + # Create backupdir if it doesn't exist. if [ ! -d "${backupdir}" ]; then mkdir -p "${backupdir}" fi } fn_backup_create_lockfile(){ - # Create lockfile + # Create lockfile. date > "${tmpdir}/.backup.lock" fn_script_log_info "Lockfile generated" fn_script_log_info "${tmpdir}/.backup.lock" @@ -98,9 +98,9 @@ fn_backup_create_lockfile(){ trap fn_backup_trap INT } -# Compressing files +# Compressing files. fn_backup_compression(){ - # Tells how much will be compressed using rootdirduexbackup value from info_distro and prompt for continue + # Tells how much will be compressed using rootdirduexbackup value from info_distro and prompt for continue. fn_print_info "A total of ${rootdirduexbackup} will be compressed." fn_script_log_info "A total of ${rootdirduexbackup} will be compressed: ${backupdir}/${backupname}.tar.gz" fn_print_dots "Backup (${rootdirduexbackup}) ${backupname}.tar.gz, in progress..." @@ -131,36 +131,36 @@ fn_backup_compression(){ rm -f "${tmpdir}/.backup.lock" } -# Clear old backups according to maxbackups and maxbackupdays variables +# Clear old backups according to maxbackups and maxbackupdays variables. fn_backup_prune(){ - # Clear if backup variables are set + # Clear if backup variables are set. if [ -n "${maxbackups}" ]&&[ -n "${maxbackupdays}" ]; then - # How many backups there are + # How many backups there are. info_distro.sh - # How many backups exceed maxbackups + # How many backups exceed maxbackups. backupquotadiff=$((backupcount-maxbackups)) - # How many backups exceed maxbackupdays + # How many backups exceed maxbackupdays. backupsoudatedcount=$(find "${backupdir}"/ -type f -name "*.tar.gz" -mtime +"${maxbackupdays}"|wc -l) - # If anything can be cleared + # If anything can be cleared. if [ "${backupquotadiff}" -gt "0" ]||[ "${backupsoudatedcount}" -gt "0" ]; then fn_print_dots "Pruning" fn_script_log_info "Backup pruning activated" fn_print_ok_nl "Pruning" - # If maxbackups greater or equal to backupsoutdatedcount, then it is over maxbackupdays + # If maxbackups greater or equal to backupsoutdatedcount, then it is over maxbackupdays. if [ "${backupquotadiff}" -ge "${backupsoudatedcount}" ]; then - # Display how many backups will be cleared + # Display how many backups will be cleared. echo " * Pruning: ${backupquotadiff} backup(s) has exceeded the ${maxbackups} backups limit" fn_script_log_info "Pruning: ${backupquotadiff} backup(s) has exceeded the ${maxbackups} backups limit" fn_sleep_time fn_print_dots "Pruning: Clearing ${backupquotadiff} backup(s)" fn_script_log_info "Pruning: Clearing ${backupquotadiff} backup(s)" - # Clear backups over quota + # Clear backups over quota. find "${backupdir}"/ -type f -name "*.tar.gz" -printf '%T@ %p\n' | sort -rn | tail -${backupquotadiff} | cut -f2- -d" " | xargs rm fn_print_ok_nl "Pruning: Clearing ${backupquotadiff} backup(s)" fn_script_log_pass "Pruning: Cleared ${backupquotadiff} backup(s)" - # If maxbackupdays is used over maxbackups + # If maxbackupdays is used over maxbackups. elif [ "${backupquotadiff}" -lt "${backupsoudatedcount}" ]; then - # Display how many backups will be cleared + # Display how many backups will be cleared. echo " * Pruning: ${backupsoudatedcount} backup(s) are older than ${maxbackupdays} days." fn_script_log_info "Pruning: ${backupsoudatedcount} backup(s) older than ${maxbackupdays} days." fn_sleep_time @@ -176,9 +176,9 @@ fn_backup_prune(){ } fn_backup_relpath() { - # Written by CedarLUG as a "realpath --relative-to" alternative in bash + # Written by CedarLUG as a "realpath --relative-to" alternative in bash. - # Populate an array of tokens initialized from the rootdir components: + # Populate an array of tokens initialized from the rootdir components. declare -a rdirtoks=($(readlink -f "${rootdir}" | sed "s/\// /g")) if [ ${#rdirtoks[@]} -eq 0 ]; then @@ -187,7 +187,7 @@ fn_backup_relpath() { core_exit.sh fi - # Populate an array of tokens initialized from the backupdir components: + # Populate an array of tokens initialized from the backupdir components. declare -a bdirtoks=($(readlink -f "${backupdir}" | sed "s/\// /g")) if [ ${#bdirtoks[@]} -eq 0 ]; then fn_print_fail_nl "Problem assessing backupdir during relative path assessment" @@ -195,14 +195,14 @@ fn_backup_relpath() { core_exit.sh fi - # Compare the leading entries of each array. These common elements will be clipped off + # Compare the leading entries of each array. These common elements will be clipped off. # for the relative path output. for ((base=0; base<${#rdirtoks[@]}; base++)) do [[ "${rdirtoks[$base]}" != "${bdirtoks[$base]}" ]] && break done - # Next, climb out of the remaining rootdir location with updir references... + # Next, climb out of the remaining rootdir location with updir references. for ((x=base;x<${#rdirtoks[@]};x++)) do echo -n "../" @@ -215,7 +215,7 @@ fn_backup_relpath() { done # In the event there were no directories left in the backupdir above to - # traverse down, just add a newline. Otherwise at this point, there is + # traverse down, just add a newline. Otherwise at this point, there is # one remaining directory component in the backupdir to navigate. if (( "$base" < "${#bdirtoks[@]}" )) ; then echo "${bdirtoks[ $(( ${#bdirtoks[@]} - 1)) ]}" @@ -224,7 +224,7 @@ fn_backup_relpath() { fi } -# Restart the server if it was stopped for the backup +# Restart the server if it was stopped for the backup. fn_backup_start_server(){ if [ "${serverstopped}" == "yes" ]; then exitbypass=1 @@ -232,7 +232,7 @@ fn_backup_start_server(){ fi } -# Run functions +# Run functions. fn_backup_check_lockfile fn_backup_create_lockfile fn_backup_init diff --git a/lgsm/functions/command_debug.sh b/lgsm/functions/command_debug.sh index 014b0aeb5..af7d6801a 100644 --- a/lgsm/functions/command_debug.sh +++ b/lgsm/functions/command_debug.sh @@ -10,7 +10,7 @@ local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" # Trap to remove lockfile on quit. fn_lockfile_trap(){ - # Remove lockfile + # Remove lockfile. rm -f "${rootdir}/${lockselfname}" # resets terminal. Servers can sometimes mess up the terminal on exit. reset @@ -23,7 +23,7 @@ check.sh fix.sh info_distro.sh info_config.sh -# NOTE: Check if works with server without parms. Could be intergrated in to info_parms.sh +# NOTE: Check if works with server without parms. Could be intergrated in to info_parms.sh. fn_parms fn_print_header echo -e "${blue}Distro:\t${default}${distroname}" @@ -35,7 +35,7 @@ echo -e "${blue}Avg Load:\t${default}${load}" echo -e "${blue}Free Memory:\t${default}${physmemfree}" echo -e "${blue}Free Disk:\t${default}${availspace}" -# glibc required +# glibc required. if [ -n "${glibc}" ]; then if [ "${glibc}" == "null" ]; then # Glibc is not required. @@ -49,19 +49,19 @@ if [ -n "${glibc}" ]; then fi fi -# Server ip +# Server IP if [ "${multiple_ip}" == "1" ]; then echo -e "${blue}Server IP:\t${default}NOT SET" else echo -e "${blue}Server IP:\t${default}${ip}:${port}" fi -# External server ip +# External server IP. if [ -n "${extip}" ]; then if [ "${ip}" != "${extip}" ]; then echo -e "${blue}Internet IP:\t${default}${extip}:${port}" fi fi -# Listed on Master Server +# Listed on Master Server. if [ "${masterserver}" ];then if [ "${masterserver}" == "true" ];then echo -e "${blue}Master Server:\t${green}${masterserver}${default}" @@ -69,7 +69,7 @@ if [ "${masterserver}" ];then echo -e "${blue}Master Server:\t${red}${masterserver}${default}" fi fi -# Server password +# Server password. if [ -n "${serverpassword}" ]; then echo -e "${blue}Server password:\t${default}${serverpassword}" fi @@ -97,7 +97,7 @@ fn_print_dots "Starting debug" fn_script_log_info "Starting debug" fn_print_ok_nl "Starting debug" -# Create lockfile +# Create lockfile. date > "${rootdir}/${lockselfname}" fn_script_log_info "Lockfile generated" fn_script_log_info "${rootdir}/${lockselfname}" @@ -105,7 +105,7 @@ fn_script_log_info "${rootdir}/${lockselfname}" trap fn_lockfile_trap INT cd "${executabledir}" || exit -# Note: do not add double quotes to ${executable} ${parms} +# Note: do not add double quotes to ${executable} ${parms}. if [ "${engine}" == "source" ]||[ "${engine}" == "goldsource" ]; then ${executable} ${parms} -debug elif [ "${engine}" == "realvirtuality" ]; then diff --git a/lgsm/functions/command_dev_detect_deps.sh b/lgsm/functions/command_dev_detect_deps.sh index d0dae61b2..ad431a722 100644 --- a/lgsm/functions/command_dev_detect_deps.sh +++ b/lgsm/functions/command_dev_detect_deps.sh @@ -61,7 +61,7 @@ while read -r lib; do local libs_array=( libtier0.so libtier0_srv.so libvstdlib_srv.so Core.so libvstdlib.so libtier0_s.so Editor.so Engine.so liblua.so libsteam_api.so ld-linux-x86-64.so.2 libPhysX3_x86.so libPhysX3Common_x86.so libPhysX3Cooking_x86.so) for lib_file in "${libs_array[@]}" do - # Known shared libs what dont requires dependencies + # Known shared libs what dont requires dependencies. if [ "${lib}" == "${lib_file}" ]; then libdetected=1 fi @@ -190,4 +190,4 @@ rm -f "${tmpdir}/.depdetect_readelf_uniq" rm -f "${tmpdir}/.depdetect_unknown" rm -f "${tmpdir}/.depdetect_unknown_uniq" -core_exit.sh \ No newline at end of file +core_exit.sh diff --git a/lgsm/functions/command_fastdl.sh b/lgsm/functions/command_fastdl.sh index f686e6126..bf75b8177 100644 --- a/lgsm/functions/command_fastdl.sh +++ b/lgsm/functions/command_fastdl.sh @@ -11,18 +11,18 @@ local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" check.sh -# Directories +# Directories. if [ -z "${webdir}" ]; then webdir="${rootdir}/public_html" fi fastdldir="${webdir}/fastdl" addonsdir="${systemdir}/addons" -# Server lua autorun dir, used to autorun lua on client connect to the server +# Server lua autorun dir, used to autorun lua on client connect to the server. luasvautorundir="${systemdir}/lua/autorun/server" luafastdlfile="lgsm_cl_force_fastdl.lua" luafastdlfullpath="${luasvautorundir}/${luafastdlfile}" -# Check if bzip2 is installed +# Check if bzip2 is installed. if [ -z "$(command -v bzip2 2>/dev/null)" ]; then fn_print_fail "bzip2 is not installed" fn_script_log_fatal "bzip2 is not installed" @@ -34,11 +34,11 @@ fn_print_header echo "More info: https://docs.linuxgsm.com/commands/fastdl" echo "" -# Prompts user for FastDL creation settings +# Prompts user for FastDL creation settings. echo "${commandaction} setup" echo "=================================" -# Prompt for clearing old files if directory was already here +# Prompt for clearing old files if directory was already here. if [ -d "${fastdldir}" ]; then fn_print_warning_nl "FastDL directory already exists." echo "${fastdldir}" @@ -50,9 +50,9 @@ if [ -d "${fastdldir}" ]; then fi fi -# Garry's Mod Specific +# Garry's Mod Specific. if [ "${shortname}" == "gmod" ]; then - # Prompt for download enforcer, which is using a .lua addfile resource generator + # Prompt for download enforcer, which is using a .lua addfile resource generator. if fn_prompt_yn "Force clients to download files?" Y; then luaresource="on" fn_script_log_info "Force clients to download files: YES" @@ -62,9 +62,9 @@ if [ "${shortname}" == "gmod" ]; then fi fi -# Clears any fastdl directory content +# Clears any fastdl directory content. fn_clear_old_fastdl(){ - # Clearing old FastDL + # Clearing old FastDL. if [ -d "${fastdldir}" ]; then echo -en "clearing existing FastDL directory ${fastdldir}..." rm -R "${fastdldir:?}" @@ -82,7 +82,7 @@ fn_clear_old_fastdl(){ } fn_fastdl_dirs(){ - # Check and create directories + # Check and create directories. if [ ! -d "${webdir}" ]; then echo -en "creating web directory ${webdir}..." mkdir -p "${webdir}" @@ -143,9 +143,9 @@ fn_human_readable_file_size(){ fi } -# Provides info about the fastdl directory content and prompts for confirmation +# Provides info about the fastdl directory content and prompts for confirmation. fn_fastdl_preview(){ - # Remove any file list + # Remove any file list. if [ -f "${tmpdir}/fastdl_files_to_compress.txt" ]; then rm -f "${tmpdir}/fastdl_files_to_compress.txt" fi @@ -206,7 +206,7 @@ fn_fastdl_preview(){ echo "calculating total file size..." fn_sleep_time totalfiles=$(wc -l < "${tmpdir}/fastdl_files_to_compress.txt") - # Calculates total file size + # Calculates total file size. while read -r dufile; do filesize=$(stat -c %s "${dufile}") filesizetotal=$(( ${filesizetotal} + ${filesize} )) @@ -231,7 +231,7 @@ fn_fastdl_preview(){ fi } -# Builds Garry's Mod fastdl directory content +# Builds Garry's Mod fastdl directory content. fn_fastdl_gmod(){ cd "${systemdir}" || exit for allowed_extention in "${allowed_extentions_array[@]}" @@ -256,7 +256,7 @@ fn_fastdl_gmod(){ fn_print_ok_eol_nl fi done - # Correct addons directory structure for FastDL + # Correct addons directory structure for FastDL. if [ -d "${fastdldir}/addons" ]; then echo -en "updating addons file structure..." cp -Rf "${fastdldir}"/addons/*/* "${fastdldir}" @@ -269,7 +269,7 @@ fn_fastdl_gmod(){ fn_print_ok_eol_nl fn_script_log_pass "Updating addons file structure" fi - # Clear addons directory in fastdl + # Clear addons directory in fastdl. echo -en "clearing addons dir from fastdl dir..." fn_sleep_time rm -R "${fastdldir:?}/addons" @@ -283,7 +283,7 @@ fn_fastdl_gmod(){ fn_script_log_pass "Clearing addons dir from fastdl dir" fi fi - # Correct content that may be into a lua directory by mistake like some darkrpmodification addons + # Correct content that may be into a lua directory by mistake like some darkrpmodification addons. if [ -d "${fastdldir}/lua" ]; then echo -en "correcting DarkRP files..." fn_sleep_time @@ -300,7 +300,7 @@ fn_fastdl_gmod(){ fi if [ -f "${tmpdir}/fastdl_files_to_compress.txt" ]; then totalfiles=$(wc -l < "${tmpdir}/fastdl_files_to_compress.txt") - # Calculates total file size + # Calculates total file size. while read dufile; do filesize=$(du -b "${dufile}" | awk '{ print $1 }') filesizetotal=$(( ${filesizetotal} + ${filesize} )) @@ -353,9 +353,9 @@ fn_fastdl_source(){ done } -# Builds the fastdl directory content +# Builds the fastdl directory content. fn_fastdl_build(){ - # Copy all needed files for FastDL + # Copy all needed files for FastDL. echo -e "copying files to ${fastdldir}" fn_script_log_info "Copying files to ${fastdldir}" if [ "${shortname}" == "gmod" ]; then @@ -366,9 +366,9 @@ fn_fastdl_build(){ fi } -# Generate lua file that will force download any file into the FastDL directory +# Generate lua file that will force download any file into the FastDL directory. fn_fastdl_gmod_dl_enforcer(){ - # Clear old lua file + # Clear old lua file. if [ -f "${luafastdlfullpath}" ]; then echo -en "removing existing download enforcer: ${luafastdlfile}..." rm "${luafastdlfullpath:?}" @@ -382,11 +382,11 @@ fn_fastdl_gmod_dl_enforcer(){ fn_script_log_pass "Removing existing download enforcer ${luafastdlfullpath}" fi fi - # Generate new one if user said yes + # Generate new one if user said yes. if [ "${luaresource}" == "on" ]; then echo -en "creating new download enforcer: ${luafastdlfile}..." touch "${luafastdlfullpath}" - # Read all filenames and put them into a lua file at the right path + # Read all filenames and put them into a lua file at the right path. while read -r line; do echo "resource.AddFile( \"${line}\" )" >> "${luafastdlfullpath}" done < <(find "${fastdldir:?}" \( -type f ! -name "*.bz2" \) -printf '%P\n') @@ -402,7 +402,7 @@ fn_fastdl_gmod_dl_enforcer(){ fi } -# Compresses FastDL files using bzip2 +# Compresses FastDL files using bzip2. fn_fastdl_bzip2(){ while read -r filetocompress; do echo -en "\r\033[Kcompressing ${filetocompress}..." @@ -419,13 +419,13 @@ fn_fastdl_bzip2(){ fn_print_ok_eol_nl } -# Run functions +# Run functions. fn_fastdl_preview fn_clear_old_fastdl fn_fastdl_dirs fn_fastdl_build fn_fastdl_bzip2 -# Finished message +# Finished message. echo "FastDL files are located in:" echo "${fastdldir}" echo "FastDL completed" diff --git a/lgsm/functions/command_install.sh b/lgsm/functions/command_install.sh index 2d0a4aa30..c1192a60a 100644 --- a/lgsm/functions/command_install.sh +++ b/lgsm/functions/command_install.sh @@ -18,7 +18,7 @@ else install_logs.sh check_deps.sh installflag=1 - # Download and install + # Download and install. if [ "${shortname}" == "ut2k4" ]; then install_server_files.sh install_ut2k4_key.sh @@ -30,7 +30,7 @@ else install_server_files.sh fi - # Configuration + # Configuration. install_config.sh if [ -v "${gslt}" ]; then install_gslt.sh diff --git a/lgsm/functions/command_mods_install.sh b/lgsm/functions/command_mods_install.sh index 38bc4979a..cac08929d 100644 --- a/lgsm/functions/command_mods_install.sh +++ b/lgsm/functions/command_mods_install.sh @@ -14,17 +14,17 @@ mods_core.sh fn_print_header -# Displays a list of installed mods +# Displays a list of installed mods. fn_mods_installed_list if [ "${installedmodscount}" -gt "0" ]; then echo "Installed addons/mods" echo "=================================" - # Go through all available commands, get details and display them to the user + # Go through all available commands, get details and display them to the user. for ((llindex=0; llindex < ${#installedmodslist[@]}; llindex++)); do - # Current mod is the "llindex" value of the array we're going through + # Current mod is the "llindex" value of the array we're going through. currentmod="${installedmodslist[llindex]}" fn_mod_get_info - # Display mod info to the user + # Display mod info to the user. echo -e " * ${green}${modcommand}${default}${default}" done echo "" @@ -32,25 +32,25 @@ fi echo "Available addons/mods" echo "=================================" -# Display available mods from mods_list.sh +# Display available mods from mods_list.sh. # Set and reset vars compatiblemodslistindex=0 -# As long as we're within index values +# As long as we're within index values. while [ "${compatiblemodslistindex}" -lt "${#compatiblemodslist[@]}" ]; do - # Set values for convenience + # Set values for convenience. displayedmodname="${compatiblemodslist[compatiblemodslistindex]}" displayedmodcommand="${compatiblemodslist[compatiblemodslistindex+1]}" displayedmodsite="${compatiblemodslist[compatiblemodslistindex+2]}" displayedmoddescription="${compatiblemodslist[compatiblemodslistindex+3]}" - # Output mods to the user + # Output mods to the user. echo -e "${displayedmodname} - ${displayedmoddescription} - ${displayedmodsite}" echo -e " * ${cyan}${displayedmodcommand}${default}" - # Increment index from the amount of values we just displayed + # Increment index from the amount of values we just displayed. let "compatiblemodslistindex+=4" ((totalmodsavailable++)) done -# If no mods are available for a specific game +# If no mods are available for a specific game. if [ -z "${compatiblemodslist}" ]; then fn_print_fail_nl "No mods are currently available for ${gamename}." fn_script_log_info "No mods are currently available for ${gamename}." @@ -58,20 +58,20 @@ if [ -z "${compatiblemodslist}" ]; then fi fn_script_log_info "${totalmodsavailable} addons/mods are available for install" -## User selects a mod +## User selects a mod. echo "" while [[ ! " ${availablemodscommands[@]} " =~ " ${usermodselect} " ]]; do echo -en "Enter an ${cyan}addon/mod${default} to ${green}install${default} (or exit to abort): " read -r usermodselect - # Exit if user says exit or abort + # Exit if user says exit or abort. if [ "${usermodselect}" == "exit" ]||[ "${usermodselect}" == "abort" ]; then core_exit.sh - # Supplementary output upon invalid user input + # Supplementary output upon invalid user input. elif [[ ! " ${availablemodscommands[@]} " =~ " ${usermodselect} " ]]; then fn_print_error2_nl "${usermodselect} is not a valid addon/mod." fi done -# Get mod info +# Get mod info. currentmod="${usermodselect}" fn_mod_get_info @@ -80,7 +80,7 @@ echo "Installing ${modprettyname}" echo "=================================" fn_script_log_info "${modprettyname} selected for install" -# Check if the mod is already installed and warn the user +# Check if the mod is already installed and warn the user. if [ -f "${modsinstalledlistfullpath}" ]; then if [ -n "$(sed -n "/^${modcommand}$/p" "${modsinstalledlistfullpath}")" ]; then fn_print_warning_nl "${modprettyname} is already installed" @@ -93,7 +93,7 @@ if [ -f "${modsinstalledlistfullpath}" ]; then fi fi -## Installation +## Installation. fn_create_mods_dir fn_mods_clear_tmp_dir diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index 344f9e2a9..9c64d4808 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -17,27 +17,27 @@ fn_print_header echo "Remove addons/mods" echo "=================================" -## Displays list of installed mods -# Generates list to display to user +# Displays list of installed mods. +# Generates list to display to user. fn_mods_installed_list for ((mlindex=0; mlindex < ${#installedmodslist[@]}; mlindex++)); do - # Current mod is the "mlindex" value of the array we are going through + # Current mod is the "mlindex" value of the array we are going through. currentmod="${installedmodslist[mlindex]}" - # Get mod info + # Get mod info. fn_mod_get_info - # Display mod info to the user + # Display mod info to the user. echo -e "${red}${modcommand}${default} - ${modprettyname} - ${moddescription}" done echo "" -# Keep prompting as long as the user input doesn't correspond to an available mod +# Keep prompting as long as the user input doesn't correspond to an available mod. while [[ ! " ${installedmodslist[@]} " =~ " ${usermodselect} " ]]; do echo -en "Enter an ${cyan}addon/mod${default} to ${red}remove${default} (or exit to abort): " read -r usermodselect - # Exit if user says exit or abort + # Exit if user says exit or abort. if [ "${usermodselect}" == "exit" ]||[ "${usermodselect}" == "abort" ]; then core_exit.sh - # Supplementary output upon invalid user input + # Supplementary output upon invalid user input. elif [[ ! " ${availablemodscommands[@]} " =~ " ${usermodselect} " ]]; then fn_print_error2_nl "${usermodselect} is not a valid addon/mod." fi @@ -53,19 +53,19 @@ currentmod="${usermodselect}" fn_mod_get_info fn_check_mod_files_list -# Uninstall the mod +# Uninstall the mod. fn_script_log_info "Removing ${modsfilelistsize} files from ${modprettyname}" echo -e "removing ${modprettyname}" echo -e "* ${modsfilelistsize} files to be removed" echo -e "* location: ${modinstalldir}" fn_sleep_time -# Go through every file and remove it +# Go through every file and remove it. modfileline="1" tput sc while [ "${modfileline}" -le "${modsfilelistsize}" ]; do - # Current line defines current file to remove + # Current line defines current file to remove. currentfileremove="$(sed "${modfileline}q;d" "${modsdir}/${modcommand}-files.txt")" - # If file or directory exists, then remove it + # If file or directory exists, then remove it. if [ -f "${modinstalldir}/${currentfileremove}" ]||[ -d "${modinstalldir}/${currentfileremove}" ]; then rm -rf "${modinstalldir:?}/${currentfileremove}" @@ -88,7 +88,7 @@ else fn_print_ok_eol_nl fi fn_sleep_time -# Remove file list +# Remove file list. echo -en "removing ${modcommand}-files.txt..." fn_sleep_time rm -rf "${modsdir}/${modcommand}-files.txt" @@ -102,7 +102,7 @@ else fn_print_ok_eol_nl fi -# Remove mods from installed mods list +# Remove mods from installed mods list. echo -en "removing ${modcommand} from ${modsinstalledlist}..." fn_sleep_time @@ -118,7 +118,7 @@ else fi # Oxide fix -# Oxide replaces server files, so a validate is required after uninstall +# Oxide replaces server files, so a validate is required after uninstall. if [ "${engine}" == "unity3d" ]&&[[ "${modprettyname}" == *"Oxide"* ]]; then fn_print_information_nl "Validating to restore original ${gamename} files replaced by Oxide" fn_script_log "Validating to restore original ${gamename} files replaced by Oxide" diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index 43eb1cb80..70a91cf5e 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -12,23 +12,23 @@ local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" check.sh mods_core.sh -# Prevents specific files being overwritten upon update (set by ${modkeepfiles}) -# For that matter, remove cfg files after extraction before copying them to destination +# Prevents specific files being overwritten upon update (set by ${modkeepfiles}). +# For that matter, remove cfg files after extraction before copying them to destination. fn_remove_cfg_files(){ if [ "${modkeepfiles}" != "OVERWRITE" ]&&[ "${modkeepfiles}" != "NOUPDATE" ]; then echo -e "the following files/directories will be preserved:" fn_sleep_time - # Count how many files there are to remove + # Count how many files there are to remove. filestopreserve="$(echo "${modkeepfiles}" | awk -F ';' '{ print NF }')" - # Test all subvalues of "modkeepfiles" using the ";" separator + # Test all subvalues of "modkeepfiles" using the ";" separator. for ((preservefilesindex=1; preservefilesindex < ${filestopreserve}; preservefilesindex++)); do - # Put the current file we are looking for into a variable + # Put the current file we are looking for into a variable. filetopreserve="$(echo "${modkeepfiles}" | awk -F ';' -v x=${preservefilesindex} '{ print $x }' )" echo -e " * serverfiles/${filetopreserve}" - # If it matches an existing file that have been extracted delete the file + # If it matches an existing file that have been extracted delete the file. if [ -f "${extractdir}/${filetopreserve}" ]||[ -d "${extractdir}/${filetopreserve}" ]; then rm -r "${extractdir:?}/${filetopreserve}" - # Write the file path in a tmp file, to rebuild a full file list as it is rebuilt upon update + # Write the file path in a tmp file, to rebuild a full file list as it is rebuilt upon update. if [ ! -f "${modsdir}/.removedfiles.tmp" ]; then touch "${modsdir}/.removedfiles.tmp" fi @@ -43,22 +43,22 @@ fn_mods_check_installed fn_print_info_nl "Update addons/mods: ${installedmodscount} addons/mods will be updated" fn_script_log_info "${installedmodscount} mods or addons will be updated" fn_mods_installed_list -# Go through all available commands, get details and display them to the user +# Go through all available commands, get details and display them to the user. for ((ulindex=0; ulindex < ${#installedmodslist[@]}; ulindex++)); do - # Current mod is the "ulindex" value of the array we're going through + # Current mod is the "ulindex" value of the array we're going through. currentmod="${installedmodslist[ulindex]}" fn_mod_get_info - # Display installed mods and the update policy + # Display installed mods and the update policy. if [ -z "${modkeepfiles}" ]; then - # If modkeepfiles is not set for some reason, that's a problem + # If modkeepfiles is not set for some reason, that's a problem. fn_script_log_error "Could not find update policy for ${modprettyname}" fn_print_error_nl "Could not find update policy for ${modprettyname}" exitcode="1" core_exit.sh - # If the mod won't get updated + # If the mod won't get updated. elif [ "${modkeepfiles}" == "NOUPDATE" ]; then echo -e " * ${red}{modprettyname}${default} (won't be updated)" - # If the mode is just overwritten + # If the mode is just overwritten. elif [ "${modkeepfiles}" == "OVERWRITE" ]; then echo -e " * ${modprettyname} (overwrite)" else @@ -67,14 +67,14 @@ for ((ulindex=0; ulindex < ${#installedmodslist[@]}; ulindex++)); do done ## Update -# List all installed mods and apply update -# Reset line value +# List all installed mods and apply update. +# Reset line value. installedmodsline="1" while [ "${installedmodsline}" -le "${installedmodscount}" ]; do currentmod="$(sed "${installedmodsline}q;d" "${modsinstalledlistfullpath}")" if [ -n "${currentmod}" ]; then fn_mod_get_info - # Don not update mod if the policy is set to "NOUPDATE" + # Don not update mod if the policy is set to "NOUPDATE". if [ "${modkeepfiles}" == "NOUPDATE" ]; then fn_print_info "${modprettyname} will not be updated to preserve custom files" fn_script_log_info "${modprettyname} will not be updated to preserve custom files" diff --git a/lgsm/functions/command_postdetails.sh b/lgsm/functions/command_postdetails.sh index 50dc4798f..e0967117f 100644 --- a/lgsm/functions/command_postdetails.sh +++ b/lgsm/functions/command_postdetails.sh @@ -31,10 +31,10 @@ posttarget=${posttarget="https://hastebin.com"} # For pastebin, you can set the expiration period. # use 1 week as the default, other options are '24h' for a day, etc. -# This, too, may be overridden from the command line at the top-level +# This, too, may be overridden from the command line at the top-level. postexpire="${postexpire="30D"}" -# source all of the functions defined in the details command +# source all of the functions defined in the details command. info_messages.sh fn_bad_postdetailslog() { @@ -42,12 +42,12 @@ fn_bad_postdetailslog() { core_exit.sh } -# Remove any existing postdetails.log file +# Remove any existing postdetails.log file. if [ -f "${postdetailslog}" ]; then rm -f "${postdetailslog}" fi -# Rather than a one-pass sed parser, default to using a temporary directory +# Rather than a one-pass sed parser, default to using a temporary directory. if [ -n "${alertflag}" ]; then postdetailslog="${alertlog}" else diff --git a/lgsm/functions/command_start.sh b/lgsm/functions/command_start.sh index 1ab7b4403..d955aef17 100644 --- a/lgsm/functions/command_start.sh +++ b/lgsm/functions/command_start.sh @@ -28,9 +28,9 @@ fn_start_teamspeak3(){ if [ -f "${lgsmlog}" ]; then mv "${lgsmlog}" "${lgsmlogdate}" fi - # Create lockfile + # Create lockfile. date > "${rootdir}/${lockselfname}" - # Accept license + # Accept license. if [ ! -f "${executabledir}/.ts3server_license_accepted" ]; then install_eula.sh fi @@ -59,7 +59,7 @@ fn_start_tmux(){ else fn_parms fi - # check for tmux size variables + # check for tmux size variables. if [[ "${servercfgtmuxwidth}" =~ ^[0-9]+$ ]]; then sessionwidth="${servercfgtmuxwidth}" else @@ -71,7 +71,7 @@ fn_start_tmux(){ sessionheight="23" fi - # Log rotation + # Log rotation. fn_script_log_info "Rotating log files" if [ "${engine}" == "unreal2" ]&&[ -f "${gamelog}" ]; then mv "${gamelog}" "${gamelogdate}" @@ -83,17 +83,17 @@ fn_start_tmux(){ mv "${consolelog}" "${consolelogdate}" fi - # Create lockfile + # Create lockfile. date > "${rootdir}/${lockselfname}" cd "${executabledir}" tmux new-session -d -x "${sessionwidth}" -y "${sessionheight}" -s "${servicename}" "${executable} ${parms}" 2> "${lgsmlogdir}/.${servicename}-tmux-error.tmp" - # Create logfile + # Create logfile. touch "${consolelog}" - # Get tmux version + # Get tmux version. tmuxversion="$(tmux -V | sed "s/tmux //" | sed -n '1 p')" - # Tmux compiled from source will return "master", therefore ignore it + # Tmux compiled from source will return "master", therefore ignore it. if [ "$(tmux -V | sed "s/tmux //" | sed -n '1 p')" == "master" ]; then fn_script_log "Tmux version: master (user compiled)" echo "Tmux version: master (user compiled)" >> "${consolelog}" @@ -101,20 +101,20 @@ fn_start_tmux(){ tmux pipe-pane -o -t "${servicename}" "exec cat >> '${consolelog}'" fi elif [ -n "${tmuxversion}" ]; then - # Get the digit version of tmux + # Get the digit version of tmux. tmuxversion="$(tmux -V | sed "s/tmux //" | sed -n '1 p' | tr -cd '[:digit:]')" - # tmux pipe-pane not supported in tmux versions < 1.6 + # tmux pipe-pane not supported in tmux versions < 1.6. if [ "${tmuxversion}" -lt "16" ]; then echo "Console logging disabled: Tmux => 1.6 required https://linuxgsm.com/tmux-upgrade Currently installed: $(tmux -V)" > "${consolelog}" - # Console logging disabled: Bug in tmux 1.8 breaks logging + # Console logging disabled: Bug in tmux 1.8 breaks logging. elif [ "${tmuxversion}" -eq "18" ]; then echo "Console logging disabled: Bug in tmux 1.8 breaks logging https://linuxgsm.com/tmux-upgrade Currently installed: $(tmux -V)" > "${consolelog}" - # Console logging enable or not set + # Console logging enable or not set. elif [ "${consolelogging}" == "on" ]||[ -z "${consolelogging}" ]; then tmux pipe-pane -o -t "${servicename}" "exec cat >> '${consolelog}'" fi @@ -123,14 +123,14 @@ fn_start_tmux(){ fn_script_log_warn "Unable to detect tmux version" fi -# Console logging disabled +# Console logging disabled. if [ "${consolelogging}" == "off" ]; then echo "Console logging disabled by user" >> "${consolelog}" fn_script_log_info "Console logging disabled by user" fi fn_sleep_time - # If the server fails to start + # If the server fails to start. check_status.sh if [ "${status}" == "0" ]; then fn_print_fail_nl "Unable to start ${servername}" @@ -187,8 +187,9 @@ fn_sleep_time fn_print_dots "${servername}" check.sh -# Is the server already started -if [ "${status}" != "0" ]; then # $status comes from check_status.sh, which is run by check.sh for this command +# Is the server already started. +# $status comes from check_status.sh, which is run by check.sh for this command +if [ "${status}" != "0" ]; then fn_print_info_nl "${servername} is already running" fn_script_log_error "${servername} is already running" if [ -z "${exitbypass}" ]; then @@ -201,7 +202,7 @@ fi info_config.sh logs.sh -# Will check for updates is updateonstart is yes +# Will check for updates is updateonstart is yes. if [ "${updateonstart}" == "yes" ]||[ "${updateonstart}" == "1" ]||[ "${updateonstart}" == "on" ]; then exitbypass=1 unset updateonstart diff --git a/lgsm/functions/command_stop.sh b/lgsm/functions/command_stop.sh index 9aadfbe54..ad3b64882 100644 --- a/lgsm/functions/command_stop.sh +++ b/lgsm/functions/command_stop.sh @@ -9,13 +9,13 @@ local commandname="STOP" local commandaction="Stopping" local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" -# Attempts graceful shutdown by sending the 'CTRL+c'. +# Attempts graceful shutdown by sending 'CTRL+c'. fn_stop_graceful_ctrlc(){ fn_print_dots "Graceful: CTRL+c" fn_script_log_info "Graceful: CTRL+c" - # sends quit + # Sends quit. tmux send-keys -t "${servicename}" C-c > /dev/null 2>&1 - # waits up to 30 seconds giving the server time to shutdown gracefuly + # Waits up to 30 seconds giving the server time to shutdown gracefuly. for seconds in {1..30}; do check_status.sh if [ "${status}" == "0" ]; then @@ -38,13 +38,13 @@ fn_stop_graceful_ctrlc(){ # Attempts graceful shutdown by sending a specified command. # Usage: fn_stop_graceful_cmd "console_command" "timeout_in_seconds" -# e.g.: fn_stop_graceful_cmd "quit" "30" +# e.g.: fn_stop_graceful_cmd "quit" "30" fn_stop_graceful_cmd(){ fn_print_dots "Graceful: sending \"${1}\"" fn_script_log_info "Graceful: sending \"${1}\"" - # sends specific stop command + # Sends specific stop command. tmux send -t "${servicename}" "${1}" ENTER > /dev/null 2>&1 - # waits up to given seconds giving the server time to shutdown gracefully + # Waits up to ${seconds} seconds giving the server time to shutdown gracefully. for ((seconds=1; seconds<=${2}; seconds++)); do check_status.sh if [ "${status}" == "0" ]; then @@ -65,16 +65,15 @@ fn_stop_graceful_cmd(){ fn_sleep_time } -# Attempts graceful of goldsource using rcon 'quit' command. -# Goldsource 'quit' command restarts rather than shutdown -# this function will only wait 3 seconds then force a tmux shutdown. -# preventing the server from coming back online. +# Attempts graceful shutdown of goldsource using rcon 'quit' command. +# There is only a 3 second delay before a forced a tmux shutdown +# as Goldsource servers 'quit' command does a restart rather than shutdown. fn_stop_graceful_goldsource(){ fn_print_dots "Graceful: sending \"quit\"" fn_script_log_info "Graceful: sending \"quit\"" # sends quit tmux send -t "${servicename}" quit ENTER > /dev/null 2>&1 - # waits 3 seconds as goldsource servers restart with the quit command + # Waits 3 seconds as goldsource servers restart with the quit command. for seconds in {1..3}; do sleep 1 fn_print_dots "Graceful: sending \"quit\": ${seconds}" @@ -84,7 +83,6 @@ fn_stop_graceful_goldsource(){ fn_script_log_pass "Graceful: sending \"quit\": OK: ${seconds} seconds" } -# Attempts graceful of 7 Days To Die using telnet. fn_stop_telnet_sdtd(){ if [ -z "${telnetpass}" ]||[ "${telnetpass}" == "NOT SET" ]; then sdtd_telnet_shutdown=$( expect -c ' @@ -121,6 +119,7 @@ fn_stop_telnet_sdtd(){ fi } +# Attempts graceful shutdown of 7 Days To Die using telnet. fn_stop_graceful_sdtd(){ fn_print_dots "Graceful: telnet" fn_script_log_info "Graceful: telnet" @@ -143,8 +142,8 @@ fn_stop_graceful_sdtd(){ fi done - # If telnet was successful will use telnet again to check the connection has closed - # This confirms that the tmux session can now be killed. + # If telnet shutdown was successful will use telnet again to check + # the connection has closed, confirming that the tmux session can now be killed. if [ -n "${completed}" ]; then for seconds in {1..30}; do fn_stop_telnet_sdtd @@ -158,8 +157,7 @@ fn_stop_graceful_sdtd(){ sleep 1 fn_print_dots "Graceful: telnet: ${seconds}" done - # If telnet failed will go straight to tmux shutdown. - # If cannot shutdown correctly world save may be lost + # If telnet shutdown fails tmux shutdown will be used, this risks loss of world save. else if [ -n "${refused}" ]; then fn_print_error "Graceful: telnet: " @@ -185,26 +183,28 @@ fn_stop_graceful_sdtd(){ fn_stop_graceful_select(){ if [ "${shortname}" == "sdtd" ]; then fn_stop_graceful_sdtd - elif [ "${engine}" == "Spark" ]; then + elif [ "${engine}" == "spark" ]; then fn_stop_graceful_cmd "q" 30 elif [ "${shortname}" == "terraria" ]; then fn_stop_graceful_cmd "exit" 30 elif [ "${shortname}" == "mc" ]; then fn_stop_graceful_cmd "stop" 30 elif [ "${shortname}" == "mta" ]; then - # we need a long wait time here as resources are stopped individually and process their own shutdowns + # Long wait time required for mta + # as resources shutdown individually. fn_stop_graceful_cmd "quit" 120 elif [ "${engine}" == "goldsource" ]; then fn_stop_graceful_goldsource elif [ "${engine}" == "unity3d" ]||[ "${engine}" == "unreal4" ]||[ "${engine}" == "unreal3" ]||[ "${engine}" == "unreal2" ]||[ "${engine}" == "unreal" ]||[ "${shortname}" == "fctr" ]||[ "${shortname}" == "mumble" ]||[ "${shortname}" == "wurm" ]||[ "${shortname}" == "jc2" ]||[ "${shortname}" == "jc3" ]; then fn_stop_graceful_ctrlc - elif [ "${engine}" == "source" ]||[ "${engine}" == "quake" ]||[ "${engine}" == "idtech2" ]||[ "${engine}" == "idtech3" ]||[ "${engine}" == "idtech3_ql" ]||[ "${shortname}" == "jc2" ]||[ "${shortname}" == "pz" ]||[ "${shortname}" == "rw" ]; then + elif [ "${engine}" == "source" ]||[ "${engine}" == "quake" ]||[ "${engine}" == "idtech2" ]||[ "${engine}" == "idtech3" ]||[ "${engine}" == "idtech3_ql" ]||[ "${shortname}" == "pz" ]||[ "${shortname}" == "rw" ]; then fn_stop_graceful_cmd "quit" 30 fi } fn_stop_ark(){ - maxpiditer=15 # The maximum number of times to check if the ark pid has closed gracefully. + # The maximum number of times to check if the ark pid has closed gracefully. + maxpiditer=15 info_config.sh if [ -z "${queryport}" ]; then fn_print_warn "No queryport found using info_config.sh" @@ -222,16 +222,15 @@ fn_stop_ark(){ if [ "${#queryport}" -gt 0 ] ; then for (( pidcheck=0 ; pidcheck < ${maxpiditer} ; pidcheck++ )) ; do pid=$(netstat -nap 2>/dev/null | grep "^udp[[:space:]]" | grep ":${queryport}[[:space:]]" | rev | awk '{print $1}' | rev | cut -d\/ -f1) - # - # check for a valid pid + # Check for a valid pid. pid=${pid//[!0-9]/} let pid+=0 # turns an empty string into a valid number, '0', # and a valid numeric pid remains unchanged. if [ "${pid}" -gt 1 ]&&[ "${pid}" -le "$(cat "/proc/sys/kernel/pid_max")" ]; then fn_print_dots "Process still bound. Awaiting graceful exit: ${pidcheck}" else - break # Our job is done here - fi # end if for pid range check + break + fi done if [[ ${pidcheck} -eq ${maxpiditer} ]] ; then # The process doesn't want to close after 20 seconds. @@ -239,15 +238,14 @@ fn_stop_ark(){ fn_print_error "Terminating reluctant Ark process: ${pid}" kill -9 ${pid} fi - fi # end if for port check -} # end of fn_stop_ark + fi +} fn_stop_teamspeak3(){ fn_print_dots "${servername}" "${serverfiles}"/ts3server_startscript.sh stop > /dev/null 2>&1 check_status.sh if [ "${status}" == "0" ]; then - # Remove lockfile rm -f "${rootdir}/${lockselfname}" fn_print_ok_nl "${servername}" fn_script_log_pass "Stopped ${servername}" @@ -265,7 +263,7 @@ fn_stop_tmux(){ fn_sleep_time check_status.sh if [ "${status}" == "0" ]; then - # ARK doesn't clean up immediately after tmux is killed. + # ARK does not clean up immediately after tmux is killed. # Make certain the ports are cleared before continuing. if [ "${shortname}" == "ark" ]; then fn_stop_ark @@ -278,10 +276,9 @@ fn_stop_tmux(){ fi } -# checks if the server is already stopped before trying to stop. +# Checks if the server is already stopped. fn_stop_pre_check(){ -# Is the server already stopped - if [ "${status}" == "0" ]; then # $status comes from check_status.sh, which is run by check.sh for this command + if [ "${status}" == "0" ]; then fn_print_info_nl "${servername} is already stopped" fn_script_log_error "${servername} is already stopped" elif [ "${shortname}" == "ts3" ]; then @@ -289,7 +286,7 @@ fn_stop_pre_check(){ else fn_stop_graceful_select fi - # Check status again, a stop tmux session if needed + # Check status again, a stop tmux session if needed. check_status.sh if [ "${status}" != "0" ]; then fn_stop_tmux @@ -300,7 +297,7 @@ fn_print_dots "${servername}" check.sh info_config.sh fn_stop_pre_check -# Remove lockfile +# Remove lockfile. if [ -f "${rootdir}/${lockselfname}" ]; then rm -f "${rootdir}/${lockselfname}" fi diff --git a/lgsm/functions/command_ts3_server_pass.sh b/lgsm/functions/command_ts3_server_pass.sh index 46a028a98..f1b18560e 100644 --- a/lgsm/functions/command_ts3_server_pass.sh +++ b/lgsm/functions/command_ts3_server_pass.sh @@ -25,7 +25,7 @@ fn_serveradmin_password_prompt(){ fn_serveradmin_password_set(){ fn_print_info_nl "Starting server with new password..." fn_script_log_info "Starting server with new password" - # Start server in "new password mode" + # Start server in "new password mode". ts3serverpass="1" exitbypass="1" command_start.sh @@ -33,12 +33,12 @@ fn_serveradmin_password_set(){ fn_script_log_pass "New ServerAdmin password applied" } -# Running functions +# Running functions. check.sh fn_serveradmin_password_prompt check_status.sh if [ "${status}" != "0" ]; then - # Stop any running server + # Stop any running server. exitbypass="1" command_stop.sh fn_serveradmin_password_set diff --git a/lgsm/functions/command_update_linuxgsm.sh b/lgsm/functions/command_update_linuxgsm.sh index 5d8422936..4a70c7748 100644 --- a/lgsm/functions/command_update_linuxgsm.sh +++ b/lgsm/functions/command_update_linuxgsm.sh @@ -14,7 +14,7 @@ fn_script_log_info "Updating LinuxGSM" echo -en "\n" if [ -z "${legacymode}" ]; then - # Check and update _default.cfg + # Check and update _default.cfg. echo -en " checking config _default.cfg...\c" config_file_diff=$(diff "${configdirdefault}/config-lgsm/${gameservername}/_default.cfg" <(${curlpath} -s "https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/lgsm/config-default/config-lgsm/${gameservername}/_default.cfg")) if [ "${config_file_diff}" != "" ]; then @@ -71,7 +71,7 @@ if [ -z "${legacymode}" ]; then fi fi -# Check and update functions +# Check and update functions. if [ -n "${functionsdir}" ]; then if [ -d "${functionsdir}" ]; then cd "${functionsdir}" || exit diff --git a/lgsm/functions/command_wipe.sh b/lgsm/functions/command_wipe.sh index 7a98c2155..12e85d90d 100644 --- a/lgsm/functions/command_wipe.sh +++ b/lgsm/functions/command_wipe.sh @@ -13,7 +13,7 @@ check.sh fn_print_header fn_script_log "Entering ${gamename} ${commandaction}" -# Process to server wipe +# Process to server wipe. fn_wipe_server_process(){ check_status.sh if [ "${status}" != "0" ]; then @@ -29,7 +29,7 @@ fn_wipe_server_process(){ fn_script_log "server data wiped." } -# Provides an exit code upon error +# Provides an exit code upon error. fn_wipe_exit_code(){ ((exitcode=$?)) if [ ${exitcode} -ne 0 ]; then @@ -40,11 +40,11 @@ fn_wipe_exit_code(){ fi } -# Removes files to wipe server +# Removes files to wipe server. fn_wipe_server_remove_files(){ - # Rust Wipe + # Rust Wipe. if [ "${shortname}" == "rust" ]; then - # Wipe pocedural map + # Wipe pocedural map. if [ -n "$(find "${serveridentitydir}" -type f -name "proceduralmap.*.map")" ]; then currentaction="Removing map file(s): ${serveridentitydir}/proceduralmap.*.map" echo -en "Removing procedural map proceduralmap.*.map file(s)..." @@ -57,7 +57,7 @@ fn_wipe_server_remove_files(){ fn_print_information_nl "No procedural map file to remove" fn_script_log_info "No procedural map file to remove." fi - # Wipe procedural map save + # Wipe procedural map save. if [ -n "$(find "${serveridentitydir}" -type f -name "proceduralmap.*.sav")" ]; then currentaction="Removing procedural map save(s): ${serveridentitydir}/proceduralmap.*.sav" echo -en "Removing map saves proceduralmap.*.sav file(s)..." @@ -70,7 +70,7 @@ fn_wipe_server_remove_files(){ fn_print_information_nl "No procedural map save to remove" fn_script_log_info "No procedural map save to remove." fi - # Wipe Barren map + # Wipe Barren map. if [ -n "$(find "${serveridentitydir}" -type f -name "barren*.map")" ]; then currentaction="Removing map file(s): ${serveridentitydir}/barren*.map" echo -en "Removing barren map barren*.map file(s)..." @@ -83,7 +83,7 @@ fn_wipe_server_remove_files(){ fn_print_information_nl "No barren map file to remove" fn_script_log_info "No barren map file to remove." fi - # Wipe barren map save + # Wipe barren map save. if [ -n "$(find "${serveridentitydir}" -type f -name "barren*.sav")" ]; then currentaction="Removing barren map save(s): ${serveridentitydir}/barren*.sav" echo -en "Removing barren map saves barren*.sav file(s)..." @@ -96,7 +96,7 @@ fn_wipe_server_remove_files(){ fn_print_information_nl "No barren map save to remove" fn_script_log_info "No barren map save to remove." fi - # Wipe user dir, might be a legacy thing, maybe to be removed + # Wipe user dir, might be a legacy thing, maybe to be removed. if [ -d "${serveridentitydir}/user" ]; then currentaction="Removing user directory: ${serveridentitydir}/user" echo -en "Removing user directory..." @@ -105,9 +105,9 @@ fn_wipe_server_remove_files(){ rm -rf "${serveridentitydir:?}/user" fn_wipe_exit_code fn_sleep_time - # We do not print additional information if there is nothing to remove since this might be obsolete + # We do not print additional information if there is nothing to remove since this might be obsolete. fi - # Wipe storage dir, might be a legacy thing, maybe to be removed + # Wipe storage dir, might be a legacy thing, maybe to be removed. if [ -d "${serveridentitydir}/storage" ]; then currentaction="Removing storage directory: ${serveridentitydir}/storage" echo -en "Removing storage directory..." @@ -116,9 +116,9 @@ fn_wipe_server_remove_files(){ rm -rf "${serveridentitydir:?}/storage" fn_wipe_exit_code fn_sleep_time - # We do not print additional information if there is nothing to remove since this might be obsolete + # We do not print additional information if there is nothing to remove since this might be obsolete. fi - # Wipe sv.files + # Wipe sv.files. if [ -n "$(find "${serveridentitydir}" -type f -name "sv.files.*.db")" ]; then currentaction="Removing server misc files: ${serveridentitydir}/sv.files.*.db" echo -en "Removing server misc srv.files*.db file(s)..." @@ -127,9 +127,9 @@ fn_wipe_server_remove_files(){ find "${serveridentitydir:?}" -type f -name "sv.files.*.d" -delete fn_wipe_exit_code fn_sleep_time - # No further information if not found because it should I could not get this file showing up + # No further information if not found because it should I could not get this file showing up. fi - # Wipe player death files + # Wipe player death files. if [ -n "$(find "${serveridentitydir}" -type f -name "player.deaths.*.db")" ]; then currentaction="Removing player death files: ${serveridentitydir}/player.deaths.*.db" echo -en "Removing player deaths player.deaths.*.db file(s)..." @@ -142,7 +142,7 @@ fn_wipe_server_remove_files(){ fn_print_information_nl "No player death to remove" fn_script_log_info "No player death to remove." fi - # Wipe blueprints only if wipeall command was used + # Wipe blueprints only if wipeall command was used. if [ "${wipeall}" == "1" ]; then if [ -n "$(find "${serveridentitydir}" -type f -name "player.blueprints.*.db")" ]; then currentaction="Removing blueprint file(s): ${serveridentitydir}/player.blueprints.*.db" @@ -164,7 +164,7 @@ fn_wipe_server_remove_files(){ fn_script_log_info "No blueprints found." fn_sleep_time fi - # Wipe some logs that might be there + # Wipe some logs that might be there. if [ -n "$(find "${serveridentitydir}" -type f -name "Log.*.txt")" ]; then currentaction="Removing log files: ${serveridentitydir}/Log.*.txt" echo -en "Removing Log files..." @@ -173,14 +173,14 @@ fn_wipe_server_remove_files(){ find "${serveridentitydir:?}" -type f -name "Log.*.txt" -delete fn_wipe_exit_code fn_sleep_time - # We do not print additional information if there are no logs to remove + # We do not print additional information if there are no logs to remove. fi - # You can add an "elif" here to add another game or engine + # You can add an "elif" here to add another game or engine. fi } -# Check if there is something to wipe, prompt the user, and call appropriate functions -# Rust Wipe +# Check if there is something to wipe, prompt the user, and call appropriate functions. +# Rust Wipe. if [ "${shortname}" == "rust" ]; then if [ -d "${serveridentitydir}/storage" ]||[ -d "${serveridentitydir}/user" ]||[ -n "$(find "${serveridentitydir}" -type f -name "proceduralmap*.sav")" ]||[ -n "$(find "${serveridentitydir}" -type f -name "barren*.sav")" ]||[ -n "$(find "${serveridentitydir}" -type f -name "Log.*.txt")" ]||[ -n "$(find "${serveridentitydir}" -type f -name "player.deaths.*.db")" ]||[ -n "$(find "${serveridentitydir}" -type f -name "player.blueprints.*.db")" ]||[ -n "$(find "${serveridentitydir}" -type f -name "sv.files.*.db")" ]; then fn_print_warning_nl "Any user, storage, log and map data from ${serveridentitydir} will be erased." @@ -195,9 +195,9 @@ if [ "${shortname}" == "rust" ]; then fn_script_log_info "No data to wipe was found." core_exit.sh fi -# You can add an "elif" here to add another game or engine +# You can add an "elif" here to add another game or engine. else - # Game not listed + # Game not listed. fn_print_information_nl "Wipe is not available for this game" fn_script_log_info "Wipe is not available for this game." core_exit.sh diff --git a/lgsm/functions/core_getopt.sh b/lgsm/functions/core_getopt.sh index 4b69f104d..dbd240bbb 100644 --- a/lgsm/functions/core_getopt.sh +++ b/lgsm/functions/core_getopt.sh @@ -6,9 +6,9 @@ local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" -### Define all commands here ### +### Define all commands here. ## User commands | Trigger commands | Description -# Standard commands +# Standard commands. cmd_install=( "i;install" "command_install.sh" "Install the server." ) cmd_auto_install=( "ai;auto-install" "fn_autoinstall" "Install the server without prompts." ) cmd_start=( "st;start" "command_start.sh" "Start the server." ) @@ -21,19 +21,19 @@ cmd_update_linuxgsm=( "ul;update-lgsm;uf;update-functions" "command_update_linux cmd_test_alert=( "ta;test-alert" "command_test_alert.sh" "Send a test alert." ) cmd_monitor=( "m;monitor" "command_monitor.sh" "Check server status and restart if crashed." ) cmd_donate=( "do;donate" "command_donate.sh" "Donation options." ) -# Console servers only +# Console servers only. cmd_console=( "c;console" "command_console.sh" "Access server console." ) cmd_debug=( "d;debug" "command_debug.sh" "Start server directly in your terminal." ) -# Update servers only +# Update servers only. cmd_update=( "u;update" "command_update.sh" "Check and apply any server updates." ) cmd_force_update=( "fu;force-update;update-restart;ur" "forceupdate=1; command_update.sh" "Apply server updates bypassing check." ) -# SteamCMD servers only +# SteamCMD servers only. cmd_validate=( "v;validate" "command_validate.sh" "Validate server files with SteamCMD." ) -# Server with mods-install +# Server with mods-install. cmd_mods_install=( "mi;mods-install" "command_mods_install.sh" "View and install available mods/addons." ) cmd_mods_remove=( "mr;mods-remove" "command_mods_remove.sh" "View and remove an installed mod/addon." ) cmd_mods_update=( "mu;mods-update" "command_mods_update.sh" "Update installed mods/addons." ) -# Server specific +# Server specific. cmd_change_password=( "pw;change-password" "command_ts3_server_pass.sh" "Change TS3 serveradmin password." ) cmd_install_default_resources=( "ir;install-default-resources" "command_install_resources_mta.sh" "Install the MTA default resources." ) cmd_wipe=( "wi;wipe" "command_wipe.sh" "Wipe your main game server data." ) @@ -44,7 +44,7 @@ cmd_install_cdkey=( "cd;server-cd-key" "install_ut2k4_key.sh" "Add your server c cmd_install_dst_token=( "ct;cluster-token" "install_dst_token.sh" "Configure cluster token." ) cmd_install_squad_license=( "li;license" "install_squad_license.sh" "Add your Squad server license." ) cmd_fastdl=( "fd;fastdl" "command_fastdl.sh" "Build a FastDL directory." ) -# Dev commands +# Dev commands. cmd_dev_debug=( "dev;developer" "command_dev_debug.sh" "Enable developer Mode." ) cmd_dev_detect_deps=( "dd;detect-deps" "command_dev_detect_deps.sh" "Detect required dependencies." ) cmd_dev_detect_glibc=( "dg;detect-glibc" "command_dev_detect_glibc.sh" "Detect required glibc." ) @@ -53,48 +53,48 @@ cmd_dev_query_raw=( "qr;query-raw" "command_dev_query_raw.sh" "The raw output of cmd_dev_clear_functions=( "cf;clear-functions" "command_dev_clear_functions.sh" "Delete the contents of the functions dir." ) -### Set specific opt here ### +### Set specific opt here. currentopt=( "${cmd_start[@]}" "${cmd_stop[@]}" "${cmd_restart[@]}" "${cmd_monitor[@]}" "${cmd_test_alert[@]}" "${cmd_details[@]}" "${cmd_postdetails[@]}" ) -# Update LGSM +# Update LGSM. currentopt+=( "${cmd_update_linuxgsm[@]}" ) -# Exclude noupdate games here +# Exclude noupdate games here. if [ "${engine}" != "quake" ]&&[ "${engine}" != "idtech2" ]&&[ "${engine}" != "idtech3" ]&&[ "${engine}" != "iw2.0" ]&&[ "${engine}" != "iw3.0" ]&&[ "${shortname}" != "bf1942" ]&&[ "${shortname}" != "samp" ]; then currentopt+=( "${cmd_update[@]}" ) - # force update for SteamCMD only or MTA + # force update for SteamCMD only or MTA. if [ -n "${appid}" ]||[ "${shortname}" == "mta" ]; then currentopt+=( "${cmd_force_update[@]}" ) fi fi -# Validate command +# Validate command. if [ -n "${appid}" ]; then currentopt+=( "${cmd_validate[@]}" ) fi -#Backup +#Backup. currentopt+=( "${cmd_backup[@]}" ) -# Exclude games without a console +# Exclude games without a console. if [ "${shortname}" != "ts3" ]; then currentopt+=( "${cmd_console[@]}" "${cmd_debug[@]}" ) fi -## Game server exclusive commands +## Game server exclusive commands. -# FastDL command +# FastDL command. if [ "${engine}" == "source" ]; then currentopt+=( "${cmd_fastdl[@]}" ) fi -# TeamSpeak exclusive +# TeamSpeak exclusive. if [ "${shortname}" == "ts3" ]; then currentopt+=( "${cmd_change_password[@]}" ) fi -# Unreal exclusive +# Unreal exclusive. if [ "${shortname}" == "rust" ]; then currentopt+=( "${cmd_wipe[@]}" "${cmd_wipeall[@]}" ) fi @@ -109,39 +109,39 @@ if [ "${engine}" == "unreal" ]; then currentopt+=( "${cmd_map_compressor_u99[@]}" ) fi -# DST exclusive +# DST exclusive. if [ "${shortname}" == "dst" ]; then currentopt+=( "${cmd_install_dst_token[@]}" ) fi -# MTA exclusive +# MTA exclusive. if [ "${shortname}" == "mta" ]; then currentopt+=( "${cmd_install_default_resources[@]}" ) fi -# Squad license exclusive +# Squad license exclusive. if [ "${shortname}" == "squad" ]; then currentopt+=( "${cmd_install_squad_license[@]}" ) fi -## Mods commands +## Mods commands. if [ "${engine}" == "source" ]||[ "${shortname}" == "rust" ]||[ "${shortname}" == "hq" ]||[ "${shortname}" == "sdtd" ]; then currentopt+=( "${cmd_mods_install[@]}" "${cmd_mods_remove[@]}" "${cmd_mods_update[@]}" ) fi -## Installer +## Installer. currentopt+=( "${cmd_install[@]}" "${cmd_auto_install[@]}" ) -## Developer commands +## Developer commands. currentopt+=( "${cmd_dev_debug[@]}" ) if [ -f ".dev-debug" ]; then currentopt+=( "${cmd_dev_detect_deps[@]}" "${cmd_dev_detect_glibc[@]}" "${cmd_dev_detect_ldd[@]}" "${cmd_dev_query_raw[@]}" "${cmd_dev_clear_functions[@]}" ) fi -## Donate +## Donate. currentopt+=( "${cmd_donate[@]}" ) -### Build list of available commands +### Build list of available commands. optcommands=() index="0" for ((index="0"; index < ${#currentopt[@]}; index+=3)); do @@ -151,7 +151,7 @@ for ((index="0"; index < ${#currentopt[@]}; index+=3)); do done done -# Shows LinuxGSM usage +# Shows LinuxGSM usage. fn_opt_usage(){ echo "Usage: $0 [option]" echo -e "" @@ -159,11 +159,11 @@ fn_opt_usage(){ echo "https://linuxgsm.com/${gameservername}" echo -e "" echo -e "${lightyellow}Commands${default}" - # Display available commands + # Display available commands. index="0" { for ((index="0"; index < ${#currentopt[@]}; index+=3)); do - # Hide developer commands + # Hide developer commands. if [ "${currentopt[index+2]}" != "DEVCOMMAND" ]; then echo -e "${cyan}$(echo "${currentopt[index]}" | awk -F ';' '{ print $2 }')\t${default}$(echo "${currentopt[index]}" | awk -F ';' '{ print $1 }')\t| ${currentopt[index+2]}" fi @@ -172,20 +172,20 @@ fn_opt_usage(){ core_exit.sh } -### Check if user commands exist and run corresponding scripts, or display script usage +# Check if user commands exist and run corresponding scripts, or display script usage. if [ -z "${getopt}" ]; then fn_opt_usage fi -# Command exists +# Command exists. for i in "${optcommands[@]}"; do if [ "${i}" == "${getopt}" ] ; then - # Seek and run command + # Seek and run command. index="0" for ((index="0"; index < ${#currentopt[@]}; index+=3)); do currcmdamount="$(echo "${currentopt[index]}" | awk -F ';' '{ print NF }')" for ((currcmdindex=1; currcmdindex <= ${currcmdamount}; currcmdindex++)); do if [ "$(echo "${currentopt[index]}" | awk -F ';' -v x=${currcmdindex} '{ print $x }')" == "${getopt}" ]; then - # Run command + # Run command. eval "${currentopt[index+1]}" core_exit.sh break @@ -195,7 +195,7 @@ for i in "${optcommands[@]}"; do fi done -# If we're executing this, it means command was not found +# If we're executing this, it means command was not found. echo -e "${red}Unknown command${default}: $0 ${getopt}" exitcode=2 fn_opt_usage diff --git a/lgsm/functions/core_legacy.sh b/lgsm/functions/core_legacy.sh index 137bfe08c..1b525b669 100644 --- a/lgsm/functions/core_legacy.sh +++ b/lgsm/functions/core_legacy.sh @@ -41,7 +41,7 @@ if [ -z "${alertlog}" ]; then alertlog="${emaillog}" fi -# Alternations to workshop variables +# Alternations to workshop variables. if [ -z "${wsapikey}" ]; then if [ "${workshopauth}" ]; then wsapikey="${workshopauth}" @@ -62,4 +62,4 @@ if [ -z "${wsstartmap}" ]; then if [ "${ws_start_map}" ]; then wscollectionid="${ws_start_map}" fi -fi \ No newline at end of file +fi diff --git a/lgsm/functions/core_messages.sh b/lgsm/functions/core_messages.sh index c0fe5b634..c909b5479 100644 --- a/lgsm/functions/core_messages.sh +++ b/lgsm/functions/core_messages.sh @@ -5,8 +5,8 @@ # Website: https://linuxgsm.com # Description: Defines on-screen messages such as [ OK ] and how script logs look. -# nl: new line: message is following by a new line -# eol: end of line: message is placed at the end of the current line +# nl: new line: message is following by a new line. +# eol: end of line: message is placed at the end of the current line. fn_ansi_loader(){ if [ "${ansi}" != "off" ]; then # echo colors @@ -24,7 +24,7 @@ fn_ansi_loader(){ cyan="\e[36m" lightcyan="\e[96m" fi - # carriage return & erase to end of line + # carriage return & erase to end of line. creeol="\r\033[K" } diff --git a/lgsm/functions/fix.sh b/lgsm/functions/fix.sh index a92d1b855..51e9b5a69 100644 --- a/lgsm/functions/fix.sh +++ b/lgsm/functions/fix.sh @@ -8,7 +8,7 @@ local commandname="FIX" local commandaction="Fix" -# Messages that are displayed for some fixes +# Messages that are displayed for some fixes. fn_fix_msg_start(){ fn_print_dots "Applying ${fixname} fix: ${gamename}" fn_print_info "Applying ${fixname} fix: ${gamename}" @@ -31,7 +31,7 @@ fn_fix_msg_end(){ fi } -# Fixes that are run on start +# Fixes that are run on start. if [ "${function_selfname}" != "command_install.sh" ]&&[ -z "${fixbypass}" ]; then if [ -n "${appid}" ]; then fix_steamcmd.sh diff --git a/lgsm/functions/fix_coduo.sh b/lgsm/functions/fix_coduo.sh index 09530e99a..9eb4e78d7 100644 --- a/lgsm/functions/fix_coduo.sh +++ b/lgsm/functions/fix_coduo.sh @@ -7,6 +7,5 @@ local commandname="FIX" local commandaction="Fix" -# Force glibc fix +# Force glibc fix. fix_glibc.sh - diff --git a/lgsm/functions/fix_dst.sh b/lgsm/functions/fix_dst.sh index 832b81398..e2850c8b8 100644 --- a/lgsm/functions/fix_dst.sh +++ b/lgsm/functions/fix_dst.sh @@ -8,7 +8,7 @@ local commandname="FIX" local commandaction="Fix" local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" -# Fixes: ./dontstarve_dedicated_server_nullrenderer: ./lib32/libcurl-gnutls.so.4: no version information available (required by ./dontstarve_dedicated_server_nullrenderer) +# Fixes: ./dontstarve_dedicated_server_nullrenderer: ./lib32/libcurl-gnutls.so.4: no version information available (required by ./dontstarve_dedicated_server_nullrenderer). # Issue only occures on CentOS as libcurl-gnutls.so.4 is called libcurl.so.4 on CentOS. if [ -f "/etc/redhat-release" ]&&[ ! -f "${serverfiles}/bin/lib32/libcurl-gnutls.so.4" ]; then fixname="libcurl-gnutls.so.4" diff --git a/lgsm/functions/fix_rust.sh b/lgsm/functions/fix_rust.sh index f4eb5298d..854020873 100644 --- a/lgsm/functions/fix_rust.sh +++ b/lgsm/functions/fix_rust.sh @@ -7,5 +7,5 @@ local commandname="FIX" local commandaction="Fix" -# Fixes: [Raknet] Server Shutting Down (Shutting Down) +# Fixes: [Raknet] Server Shutting Down (Shutting Down). export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:${systemdir}/RustDedicated_Data/Plugins/x86_64" diff --git a/lgsm/functions/fix_ts3.sh b/lgsm/functions/fix_ts3.sh index 0d27c316b..751b5dbd5 100644 --- a/lgsm/functions/fix_ts3.sh +++ b/lgsm/functions/fix_ts3.sh @@ -8,10 +8,10 @@ local commandname="FIX" local commandaction="Fix" local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" -# Fixes: makes libmariadb2 available #1924 +# Fixes: makes libmariadb2 available #1924. if [ ! -f "${serverfiles}/libmariadb.so.2" ]; then fixname="libmariadb.so.2" fn_fix_msg_start cp "${serverfiles}/redist/libmariadb.so.2" "${serverfiles}/libmariadb.so.2" - fn_fix_msg_end + fn_fix_msg_end fi diff --git a/lgsm/functions/fix_unt.sh b/lgsm/functions/fix_unt.sh index d89f69558..bc29a54ed 100644 --- a/lgsm/functions/fix_unt.sh +++ b/lgsm/functions/fix_unt.sh @@ -7,5 +7,5 @@ local commandname="FIX" local commandaction="Fix" -# Fixes: [Raknet] Server Shutting Down (Shutting Down) +# Fixes: [Raknet] Server Shutting Down (Shutting Down). export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:${systemdir}/lib" diff --git a/lgsm/functions/fix_wurm.sh b/lgsm/functions/fix_wurm.sh index 5c90dc402..756636cac 100644 --- a/lgsm/functions/fix_wurm.sh +++ b/lgsm/functions/fix_wurm.sh @@ -4,13 +4,13 @@ # Website: https://linuxgsm.com # Description: Resolves various issues with ARK: Survival Evolved. -# Copies steamclient.so to correct location +# Copies steamclient.so to correct location. if [ ! -f "${serverfiles}/nativelibs" ]; then cp -f "${serverfiles}/linux64/steamclient.so" "${serverfiles}/nativelibs" fi -# First run requires start with no parms -# After first run new dirs are created +# First run requires start with no parms. +# After first run new dirs are created. if [ ! -d "${serverfiles}/Creative" ]; then parmsbypass=1 fixbypass=1 @@ -20,4 +20,4 @@ if [ ! -d "${serverfiles}/Creative" ]; then exitbypass=1 command_stop.sh unset parmsbypass -fi \ No newline at end of file +fi diff --git a/lgsm/functions/info_config.sh b/lgsm/functions/info_config.sh index 11ddb95ec..14d77cf9f 100644 --- a/lgsm/functions/info_config.sh +++ b/lgsm/functions/info_config.sh @@ -7,7 +7,7 @@ local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" -## Examples of filtering to get info from config files +## Examples of filtering to get info from config files. # sed 's/foo//g' - remove foo # tr -cd '[:digit:]' leave only digits # tr -d '=\"; ' remove selected characters =\"; diff --git a/lgsm/functions/info_distro.sh b/lgsm/functions/info_distro.sh index 8100feb97..17faeb50a 100644 --- a/lgsm/functions/info_distro.sh +++ b/lgsm/functions/info_distro.sh @@ -19,7 +19,7 @@ kernel=$(uname -r) # Distro ID - ubuntu # Distro Codename - xenial -# Gathers distro info from various sources filling in missing gaps +# Gathers distro info from various sources filling in missing gaps. distro_info_array=( os-release lsb_release hostnamectl debian_version redhat-release ) for distro_info in "${distro_info_array[@]}" do @@ -97,18 +97,18 @@ cpufreuency=$(awk -F: ' /cpu MHz/ {freq=$2} END {print freq " MHz"}' /proc/cpuin ## Memory information # Available RAM and swap. -# Newer distros can use numfmt to give more accurate results +# Newer distros can use numfmt to give more accurate results. if [ -n "$(command -v numfmt 2>/dev/null)" ]; then - # Issue #2005 - Kernel 3.14+ contains MemAvailable which should be used. All others will be calculated + # Issue #2005 - Kernel 3.14+ contains MemAvailable which should be used. All others will be calculated. - # get the raw KB values of these fields + # get the raw KB values of these fields. physmemtotalkb=$(grep MemTotal /proc/meminfo | awk '{print $2}') physmemfreekb=$(grep ^MemFree /proc/meminfo | awk '{print $2}') physmembufferskb=$(grep ^Buffers /proc/meminfo | awk '{print $2}') physmemcachedkb=$(grep ^Cached /proc/meminfo | awk '{print $2}') physmemreclaimablekb=$(grep ^SReclaimable /proc/meminfo | awk '{print $2}') - # check if MemAvailable Exists + # check if MemAvailable Exists. if grep -q ^MemAvailable /proc/meminfo; then physmemactualfreekb=$(grep ^MemAvailable /proc/meminfo | awk '{print $2}') else @@ -183,12 +183,12 @@ fi if [ -d "${backupdir}" ]; then # Used space in backups dir. backupdirdu=$(du -sh "${backupdir}" | awk '{print $1}') - # If no backup dir, size is 0M + # If no backup dir, size is 0M. if [ -z "${backupdirdu}" ]; then backupdirdu="0M" fi - # number of backups set to 0 by default + # number of backups set to 0 by default. backupcount=0 # If there are backups in backup dir. @@ -210,7 +210,7 @@ fi if [ -z "${extip}" ]; then extip=$(${curlpath} -4 -m 3 ifconfig.co 2>/dev/null) exitcode=$? - # Should ifconfig.co return an error will use last known IP + # Should ifconfig.co return an error will use last known IP. if [ ${exitcode} -eq 0 ]; then echo "${extip}" > "${tmpdir}/extip.txt" else @@ -231,7 +231,7 @@ else alertip="${ip}" fi -# Steam Master Server - checks if detected by master server +# Steam Master Server - checks if detected by master server. if [ "$(command -v jq 2>/dev/null)" ]; then if [ "${ip}" ]&&[ "${port}" ]; then if [ "${steammaster}" == "true" ]; then diff --git a/lgsm/functions/install_config.sh b/lgsm/functions/install_config.sh index cb5a431ad..b601da7fc 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -8,7 +8,7 @@ local commandname="INSTALL" local commandaction="Install" local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" -# Checks if server cfg dir exists, creates it if it doesn't +# Checks if server cfg dir exists, creates it if it doesn't. fn_check_cfgdir(){ if [ ! -d "${servercfgdir}" ]; then echo "creating ${servercfgdir} config directory." @@ -17,7 +17,7 @@ fn_check_cfgdir(){ fi } -# Downloads default configs from Game-Server-Configs repo to lgsm/config-default +# Downloads default configs from Game-Server-Configs repo to lgsm/config-default. fn_fetch_default_config(){ echo "" echo "Downloading ${gamename} Configs" @@ -31,7 +31,7 @@ fn_fetch_default_config(){ done } -# Copys default configs from Game-Server-Configs repo to server config location +# Copys default configs from Game-Server-Configs repo to server config location. fn_default_config_remote(){ for config in "${array_configs[@]}"; do # every config is copied @@ -53,14 +53,14 @@ fn_default_config_remote(){ fn_sleep_time } -# Copys local default config to server config location +# Copys local default config to server config location. fn_default_config_local(){ echo "copying ${servercfgdefault} config file." cp -nv "${servercfgfullpathdefault}" "${servercfgfullpath}" fn_sleep_time } -# Changes some variables within the default configs +# Changes some variables within the default configs. # SERVERNAME to LinuxGSM # PASSWORD to random password fn_set_config_vars(){ @@ -71,7 +71,7 @@ fn_set_config_vars(){ echo "changing hostname." fn_script_log_info "changing hostname." fn_sleep_time - # prevents var from being overwritten with the servername + # prevents var from being overwritten with the servername. if grep -q "SERVERNAME=SERVERNAME" "${lgsmdir}/config-default/config-game/${config}" 2>/dev/null; then sed -i "s/SERVERNAME=SERVERNAME/SERVERNAME=${servername}/g" "${servercfgfullpath}" elif grep -q "SERVERNAME=\"SERVERNAME\"" "${lgsmdir}/config-default/config-game/${config}" 2>/dev/null; then @@ -94,7 +94,7 @@ fn_set_config_vars(){ fi } -# Changes some variables within the default Don't Starve Together configs +# Changes some variables within the default Don't Starve Together configs. fn_set_dst_config_vars(){ ## cluster.ini if grep -Fq "SERVERNAME" "${clustercfgfullpath}"; then @@ -117,7 +117,7 @@ fn_set_dst_config_vars(){ fi ## server.ini - # removing unnecessary options (dependent on sharding & shard type) + # removing unnecessary options (dependent on sharding & shard type). if [ "${sharding}" == "false" ]; then sed -i "s/ISMASTER//g" "${servercfgfullpath}" sed -i "/SHARDNAME/d" "${servercfgfullpath}" diff --git a/lgsm/functions/install_logs.sh b/lgsm/functions/install_logs.sh index d02bb8e35..c886c9140 100644 --- a/lgsm/functions/install_logs.sh +++ b/lgsm/functions/install_logs.sh @@ -14,7 +14,7 @@ if [ "${checklogs}" != "1" ]; then echo "=================================" fi fn_sleep_time -# Create LinuxGSM logs +# Create LinuxGSM logs. echo -en "installing log dir: ${logdir}..." mkdir -p "${logdir}" if [ $? -ne 0 ]; then @@ -40,7 +40,7 @@ if [ $? -ne 0 ]; then else fn_print_ok_eol_nl fi -# Create Console logs +# Create Console logs. if [ -n "${consolelogdir}" ]; then echo -en "installing console log dir: ${consolelogdir}..." mkdir -p "${consolelogdir}" @@ -60,7 +60,7 @@ if [ -n "${consolelogdir}" ]; then fi fi -# Create Game logs +# Create Game logs. if [ -n "${gamelogdir}" ]&&[ ! -d "${gamelogdir}" ]; then echo -en "installing game log dir: ${gamelogdir}..." mkdir -p "${gamelogdir}" @@ -73,7 +73,7 @@ if [ -n "${gamelogdir}" ]&&[ ! -d "${gamelogdir}" ]; then fi # Symlink to gamelogdir -# unless gamelogdir is within logdir +# unless gamelogdir is within logdir. # e.g serverfiles/log is not within log/: symlink created # log/server is in log/: symlink not created if [ -n "${gamelogdir}" ]; then @@ -89,7 +89,7 @@ if [ -n "${gamelogdir}" ]; then fi fi -# If server uses SteamCMD create a symbolic link to the Steam logs +# If server uses SteamCMD create a symbolic link to the Steam logs. if [ -d "${rootdir}/Steam/logs" ]; then if [ ! -L "${logdir}/steamcmd" ]; then echo -en "creating symlink to steam log dir: ${logdir}/steamcmd -> ${rootdir}/Steam/logs..." diff --git a/lgsm/functions/install_server_files.sh b/lgsm/functions/install_server_files.sh index cf2ee3e90..be94748f9 100644 --- a/lgsm/functions/install_server_files.sh +++ b/lgsm/functions/install_server_files.sh @@ -64,11 +64,11 @@ fn_install_server_files_steamcmd(){ counter=$((counter+1)) cd "${steamcmddir}" if [ "${counter}" -le "10" ]; then - # Attempt 1-4: Standard attempt - # Attempt 5-6: Validate attempt - # Attempt 7-8: Validate, delete long name dir - # Attempt 9-10: Validate, delete long name dir, re-download SteamCMD - # Attempt 11: Failure + # Attempt 1-4: Standard attempt. + # Attempt 5-6: Validate attempt. + # Attempt 7-8: Validate, delete long name dir. + # Attempt 9-10: Validate, delete long name dir, re-download SteamCMD. + # Attempt 11: Failure. if [ "${counter}" -ge "2" ]; then fn_print_warning_nl "SteamCMD did not complete the download, retrying: Attempt ${counter}" diff --git a/lgsm/functions/install_ts3db.sh b/lgsm/functions/install_ts3db.sh index 264f2597f..6fbe45724 100644 --- a/lgsm/functions/install_ts3db.sh +++ b/lgsm/functions/install_ts3db.sh @@ -65,7 +65,6 @@ fi install_eula.sh -## Get privilege key echo "" echo "Getting privilege key" echo "=================================" diff --git a/lgsm/functions/logs.sh b/lgsm/functions/logs.sh index 803f9e243..c4de5e8c8 100644 --- a/lgsm/functions/logs.sh +++ b/lgsm/functions/logs.sh @@ -8,14 +8,14 @@ local commandname="LOGS" local commandaction="Log-Manager" -# Check if logfile variable and file exist, create logfile if it doesn't exist +# Check if logfile variable and file exist, create logfile if it doesn't exist. if [ -n "${consolelog}" ]; then if [ ! -e "${consolelog}" ]; then touch "${consolelog}" fi fi -# For games not displaying a console, and having logs into their game directory +# For games not displaying a console, and having logs into their game directory. check_status.sh if [ "${status}" != "0" ]&&[ "${function_selfname}" == "command_start.sh" ]&&[ -n "${gamelogfile}" ]; then if [ -n "$(find "${systemdir}" -name "gamelog*.log")" ]; then @@ -27,7 +27,7 @@ if [ "${status}" != "0" ]&&[ "${function_selfname}" == "command_start.sh" ]&&[ - fi fi -# Log manager will start the cleanup if it finds logs older than "${logdays}" +# Log manager will start the cleanup if it finds logs older than "${logdays}". if [ $(find "${lgsmlogdir}"/ -type f -mtime +"${logdays}" | wc -l) -ne "0" ]; then fn_print_dots "Starting" # Set common logs directories @@ -44,24 +44,24 @@ if [ $(find "${lgsmlogdir}"/ -type f -mtime +"${logdays}" | wc -l) -ne "0" ]; th fn_print_ok_nl "Starting" fn_print_info_nl "Removing logs older than ${logdays} days" fn_script_log_info "Removing logs older than ${logdays} days" - # Logging logfiles to be removed according to "${logdays}", counting and removing them - # Script logfiles + # Logging logfiles to be removed according to "${logdays}", counting and removing them. + # Script logfiles. find "${lgsmlogdir}"/ -type f -mtime +"${logdays}" | tee >> "${lgsmlog}" scriptcount=$(find "${lgsmlogdir}"/ -type f -mtime +"${logdays}" | wc -l) find "${lgsmlogdir}"/ -mtime +"${logdays}" -type f -exec rm -f {} \; - # SRCDS and unreal logfiles + # SRCDS and unreal logfiles. if [ "${engine}" == "unreal2" ]||[ "${engine}" == "source" ]; then find "${gamelogdir}"/ -type f -mtime +"${logdays}" | tee >> "${lgsmlog}" gamecount=$(find "${gamelogdir}"/ -type f -mtime +"${logdays}" | wc -l) find "${gamelogdir}"/ -mtime +"${logdays}" -type f -exec rm -f {} \; fi - # Console logfiles + # Console logfiles. if [ -n "${consolelog}" ]; then find "${consolelogdir}"/ -type f -mtime +"${logdays}" | tee >> "${lgsmlog}" consolecount=$(find "${consolelogdir}"/ -type f -mtime +"${logdays}" | wc -l) find "${consolelogdir}"/ -mtime +"${logdays}" -type f -exec rm -f {} \; fi - # Common logfiles + # Common logfiles. if [ -d "${commonlogs}" ]; then find "${commonlogs}"/ -type f -mtime +"${logdays}" | tee >> "${lgsmlog}" smcount=$(find "${commonlogs}"/ -type f -mtime +"${logdays}" | wc -l) @@ -72,23 +72,23 @@ if [ $(find "${lgsmlogdir}"/ -type f -mtime +"${logdays}" | wc -l) -ne "0" ]; th smcount=$(find "${commonsourcelogs}"/* -type f -mtime +"${logdays}" | wc -l) find "${commonsourcelogs}"/* -mtime +"${logdays}" -type f -exec rm -f {} \; fi - # Source addons logfiles + # Source addons logfiles. if [ "${engine}" == "source" ]; then - # SourceMod logfiles + # SourceMod logfiles. if [ -d "${sourcemodlogdir}" ]; then find "${sourcemodlogdir}"/ -type f -mtime +"${logdays}" | tee >> "${lgsmlog}" smcount=$(find "${sourcemodlogdir}"/ -type f -mtime +"${logdays}" | wc -l) find "${sourcemodlogdir}"/ -mtime +"${logdays}" -type f -exec rm -f {} \; fi - # Garry's Mod logfiles + # Garry's Mod logfiles. if [ "${gamename}" == "Garry's Mod" ]; then - # ULX logfiles + # ULX logfiles. if [ -d "${ulxlogdir}" ]; then find "${ulxlogdir}"/ -type f -mtime +"${logdays}" | tee >> "${lgsmlog}" ulxcount=$(find "${ulxlogdir}"/ -type f -mtime +"${logdays}" | wc -l) find "${ulxlogdir}"/ -mtime +"${logdays}" -type f -exec rm -f {} \; fi - # DarkRP logfiles + # DarkRP logfiles. if [ -d "${darkrplogdir}" ]; then find "${darkrplogdir}"/ -type f -mtime +"${logdays}" | tee >> "${lgsmlog}" darkrpcount=$(find "${darkrplogdir}"/ -type f -mtime +"${logdays}" | wc -l) @@ -97,9 +97,9 @@ if [ $(find "${lgsmlogdir}"/ -type f -mtime +"${logdays}" | wc -l) -ne "0" ]; th fi fi - # Count total amount of files removed + # Count total amount of files removed. countlogs=$((${scriptcount} + ${consolecount} + ${gamecount} + ${srcdscount} + ${smcount} + ${ulxcount} + ${darkrpcount})) - # Job done + # Job done. fn_print_ok_nl "Removed ${countlogs} log files" fn_script_log "Removed ${countlogs} log files" fi diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index c65727738..30e436a53 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -9,19 +9,19 @@ local commandname="MODS" local commandaction="Mods" local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" -# Files and Directories +# Files and Directories. modsdir="${lgsmdir}/mods" modstmpdir="${modsdir}/tmp" extractdir="${modstmpdir}/extract" modsinstalledlist="installed-mods.txt" modsinstalledlistfullpath="${modsdir}/${modsinstalledlist}" -## Installation +## Installation. -# Download management +# Download management. fn_mod_install_files(){ fn_fetch_file "${modurl}" "${modstmpdir}" "${modfilename}" - # Check if variable is valid checking if file has been downloaded and exists + # Check if variable is valid checking if file has been downloaded and exists. if [ ! -f "${modstmpdir}/${modfilename}" ]; then fn_print_failure "An issue occurred downloading ${modprettyname}" fn_script_log_fatal "An issue occurred downloading ${modprettyname}" @@ -33,7 +33,7 @@ fn_mod_install_files(){ fn_dl_extract "${modstmpdir}" "${modfilename}" "${extractdir}" } -# Convert mod files to lowercase if needed +# Convert mod files to lowercase if needed. fn_mod_lowercase(){ if [ "${modlowercase}" == "LowercaseOn" ]; then @@ -65,11 +65,11 @@ fn_mod_lowercase(){ fi } -# Create ${modcommand}-files.txt containing the full extracted file/directory list +# Create ${modcommand}-files.txt containing the full extracted file/directory list. fn_mod_create_filelist(){ echo -en "building ${modcommand}-files.txt..." fn_sleep_time - # ${modsdir}/${modcommand}-files.txt + # ${modsdir}/${modcommand}-files.txt. find "${extractdir}" -mindepth 1 -printf '%P\n' > "${modsdir}/${modcommand}-files.txt" local exitcode=$? if [ ${exitcode} -ne 0 ]; then @@ -80,14 +80,14 @@ fn_mod_create_filelist(){ fn_print_ok_eol_nl fn_script_log_pass "Building ${modsdir}/${modcommand}-files.txt" fi - # Adding removed files if needed + # Adding removed files if needed. if [ -f "${modsdir}/.removedfiles.tmp" ]; then cat "${modsdir}/.removedfiles.tmp" >> "${modsdir}/${modcommand}-files.txt" fi fn_sleep_time } -# Copy the mod into serverfiles +# Copy the mod into serverfiles. fn_mod_copy_destination(){ echo -en "copying ${modprettyname} to ${modinstalldir}..." fn_sleep_time @@ -102,7 +102,7 @@ fn_mod_copy_destination(){ fi } -# Add the mod to the installed-mods.txt +# Add the mod to the installed-mods.txt. fn_mod_add_list(){ if [ ! -n "$(sed -n "/^${modcommand}$/p" "${modsinstalledlistfullpath}")" ]; then echo "${modcommand}" >> "${modsinstalledlistfullpath}" @@ -110,26 +110,26 @@ fn_mod_add_list(){ fi } -# Prevent sensitive directories from being erased upon uninstall by removing them from: ${modcommand}-files.txt +# Prevent sensitive directories from being erased upon uninstall by removing them from: ${modcommand}-files.txt. fn_mod_tidy_files_list(){ - # Check file list validity + # Check file list validity. fn_check_mod_files_list # Output to the user echo -en "tidy up ${modcommand}-files.txt..." fn_sleep_time fn_script_log_info "Tidy up ${modcommand}-files.txt" - # Lines/files to remove from file list (end with ";" separator) + # Lines/files to remove from file list (end with ";" separator). removefromlist="cfg;addons;RustDedicated_Data;RustDedicated_Data\/Managed;RustDedicated_Data\/Managed\/x86;RustDedicated_Data\/Managed\/x64;" # Loop through files to remove from file list, - # generate elements to remove from list + # generate elements to remove from list. removefromlistamount="$(echo "${removefromlist}" | awk -F ';' '{ print NF }')" - # Test all subvalue of "removefromlist" using the ";" separator + # Test all subvalue of "removefromlist" using the ";" separator. for ((filesindex=1; filesindex < removefromlistamount; filesindex++)); do - # Put current file into test variable + # Put current file into test variable. removefilevar="$(echo "${removefromlist}" | awk -F ';' -v x=${filesindex} '{ print $x }')" - # Delete line(s) matching exactly + # Delete line(s) matching exactly. sed -i "/^${removefilevar}$/d" "${modsdir}/${modcommand}-files.txt" - # Exit on error + # Exit on error. local exitcode=$? if [ ${exitcode} -ne 0 ]; then fn_print_fail_eol_nl @@ -140,42 +140,42 @@ fn_mod_tidy_files_list(){ done fn_print_ok_eol_nl # Sourcemod fix - # Remove metamod from sourcemod fileslist + # Remove metamod from sourcemod fileslist. if [ "${modcommand}" == "sourcemod" ]; then - # Remove addons/metamod & addons/metamod/sourcemod.vdf from ${modcommand}-files.txt + # Remove addons/metamod & addons/metamod/sourcemod.vdf from ${modcommand}-files.txt. sed -i "/^addons\/metamod$/d" "${modsdir}/${modcommand}-files.txt" sed -i "/^addons\/metamod\/sourcemod.vdf$/d" "${modsdir}/${modcommand}-files.txt" fi } -## Information Gathering +## Information Gathering. -# Get details of a mod any (relevant and unique, such as full mod name or install command) value +# Get details of a mod any (relevant and unique, such as full mod name or install command) value. fn_mod_get_info(){ - # Variable to know when job is done + # Variable to know when job is done. modinfocommand="0" - # Find entry in global array + # Find entry in global array. for ((index=0; index <= ${#mods_global_array[@]}; index++)); do - # When entry is found + # When entry is found. if [ "${mods_global_array[index]}" == "${currentmod}" ]; then - # Go back to the previous "MOD" separator + # Go back to the previous "MOD" separator. for ((index=index; index <= ${#mods_global_array[@]}; index--)); do - # When "MOD" is found + # When "MOD" is found. if [ "${mods_global_array[index]}" == "MOD" ]; then - # Get info + # Get info. fn_mods_define modinfocommand="1" break fi done fi - # Exit the loop if job is done + # Exit the loop if job is done. if [ "${modinfocommand}" == "1" ]; then break fi done - # What happens if mod is not found + # What happens if mod is not found. if [ "${modinfocommand}" == "0" ]; then fn_script_log_error "Could not find information for ${currentmod}" fn_print_error_nl "Could not find information for ${currentmod}" @@ -183,7 +183,7 @@ fn_mod_get_info(){ fi } -# Define all variables for a mod at once when index is set to a separator +# Define all variables for a mod at once when index is set to a separator. fn_mods_define(){ if [ -z "$index" ]; then fn_script_log_fatal "index variable not set. Please report an issue." @@ -206,25 +206,25 @@ fi moddescription="${mods_global_array[index+13]}" } -# Builds list of installed mods -# using installed-mods.txt grabing mod info from mods_list.sh +# Builds list of installed mods. +# using installed-mods.txt grabing mod info from mods_list.sh. fn_mods_installed_list(){ fn_mods_count_installed - # Set/reset variables + # Set/reset variables. installedmodsline="1" installedmodslist=() modprettynamemaxlength="0" modsitemaxlength="0" moddescriptionmaxlength="0" modcommandmaxlength="0" - # Loop through every line of the installed mods list ${modsinstalledlistfullpath} + # Loop through every line of the installed mods list ${modsinstalledlistfullpath}. while [ "${installedmodsline}" -le "${installedmodscount}" ]; do currentmod="$(sed "${installedmodsline}q;d" "${modsinstalledlistfullpath}")" - # Get mod info to make sure mod exists + # Get mod info to make sure mod exists. fn_mod_get_info - # Add the mod to available commands + # Add the mod to available commands. installedmodslist+=( "${modcommand}" ) - # Increment line check + # Increment line check. ((installedmodsline++)) done if [ -n "${installedmodscount}" ]; then @@ -232,99 +232,99 @@ fn_mods_installed_list(){ fi } -# Loops through mods_global_array to define available mods & provide available commands for mods installation +# Loops through mods_global_array to define available mods & provide available commands for mods installation. fn_mods_available(){ - # First, reset variables + # First, reset variables. compatiblemodslist=() availablemodscommands=() - # Find compatible games - # Find separators through the global array + # Find compatible games. + # Find separators through the global array. for ((index="0"; index <= ${#mods_global_array[@]}; index++)); do - # If current value is a separator; then + # If current value is a separator; then. if [ "${mods_global_array[index]}" == "${modseparator}" ]; then - # Set mod variables + # Set mod variables. fn_mods_define - # Test if game is compatible + # Test if game is compatible. fn_mod_compatible_test - # If game is compatible + # If game is compatible. if [ "${modcompatibility}" == "1" ]; then - # Put it into an array to prepare user output + # Put it into an array to prepare user output. compatiblemodslist+=( "${modprettyname}" "${modcommand}" "${modsite}" "${moddescription}" ) - # Keep available commands in an array to make life easier + # Keep available commands in an array to make life easier. availablemodscommands+=( "${modcommand}" ) fi fi done } -## Mod compatibility check +## Mod compatibility check. -# Find out if a game is compatible with a mod from a modgames (list of games supported by a mod) variable +# Find out if a game is compatible with a mod from a modgames (list of games supported by a mod) variable. fn_compatible_mod_games(){ - # Reset test value + # Reset test value. modcompatiblegame="0" - # If value is set to GAMES (ignore) + # If value is set to GAMES (ignore). if [ "${modgames}" != "GAMES" ]; then - # How many games we need to test + # How many games we need to test. gamesamount="$(echo "${modgames}" | awk -F ';' '{ print NF }')" - # Test all subvalue of "modgames" using the ";" separator + # Test all subvalue of "modgames" using the ";" separator. for ((gamevarindex=1; gamevarindex < gamesamount; gamevarindex++)); do - # Put current game name into modtest variable + # Put current game name into modtest variable. gamemodtest="$( echo "${modgames}" | awk -F ';' -v x=${gamevarindex} '{ print $x }' )" - # If game name matches + # If game name matches. if [ "${gamemodtest}" == "${gamename}" ]; then - # Mod is compatible ! + # Mod is compatible. modcompatiblegame="1" fi done fi } -# Find out if an engine is compatible with a mod from a modengines (list of engines supported by a mod) variable +# Find out if an engine is compatible with a mod from a modengines (list of engines supported by a mod) variable. fn_compatible_mod_engines(){ - # Reset test value + # Reset test value. modcompatibleengine="0" - # If value is set to ENGINES (ignore) + # If value is set to ENGINES (ignore). if [ "${modengines}" != "ENGINES" ]; then - # How many engines we need to test + # How many engines we need to test. enginesamount="$(echo "${modengines}" | awk -F ';' '{ print NF }')" - # Test all subvalue of "modengines" using the ";" separator + # Test all subvalue of "modengines" using the ";" separator. for ((gamevarindex=1; gamevarindex < ${enginesamount}; gamevarindex++)); do - # Put current engine name into modtest variable + # Put current engine name into modtest variable. enginemodtest="$( echo "${modengines}" | awk -F ';' -v x=${gamevarindex} '{ print $x }' )" - # If engine name matches + # If engine name matches. if [ "${enginemodtest}" == "${engine}" ]; then - # Mod is compatible! + # Mod is compatible. modcompatibleengine="1" fi done fi } -# Find out if a game is not compatible with a mod from a modnotgames (list of games not supported by a mod) variable +# Find out if a game is not compatible with a mod from a modnotgames (list of games not supported by a mod) variable. fn_not_compatible_mod_games(){ - # Reset test value + # Reset test value. modeincompatiblegame="0" - # If value is set to NOTGAMES (ignore) + # If value is set to NOTGAMES (ignore). if [ "${modexcludegames}" != "NOTGAMES" ]; then - # How many engines we need to test + # How many engines we need to test. excludegamesamount="$(echo "${modexcludegames}" | awk -F ';' '{ print NF }')" - # Test all subvalue of "modexcludegames" using the ";" separator + # Test all subvalue of "modexcludegames" using the ";" separator. for ((gamevarindex=1; gamevarindex < excludegamesamount; gamevarindex++)); do - # Put current engine name into modtest variable + # Put current engine name into modtest variable. excludegamemodtest="$( echo "${modexcludegames}" | awk -F ';' -v x=${gamevarindex} '{ print $x }' )" - # If engine name matches + # If engine name matches. if [ "${excludegamemodtest}" == "${gamename}" ]; then - # Mod is compatible! + # Mod is compatible. modeincompatiblegame="1" fi done fi } -# Sums up if a mod is compatible or not with modcompatibility=0/1 +# Sums up if a mod is compatible or not with modcompatibility=0/1. fn_mod_compatible_test(){ - # Test game and engine compatibility + # Test game and engine compatibility. fn_compatible_mod_games fn_compatible_mod_engines fn_not_compatible_mod_games @@ -337,11 +337,11 @@ fn_mod_compatible_test(){ fi } -## Directory management +## Directory management. -# Create mods files and directories if it doesn't exist +# Create mods files and directories if it doesn't exist. fn_create_mods_dir(){ - # Create lgsm data modsdir + # Create lgsm data modsdir. if [ ! -d "${modsdir}" ]; then echo -en "creating LinuxGSM mods data directory ${modsdir}..." mkdir -p "${modsdir}" @@ -356,7 +356,7 @@ fn_create_mods_dir(){ fi fn_sleep_time fi - # Create mod install directory + # Create mod install directory. if [ ! -d "${modinstalldir}" ]; then echo -en "creating mods install directory ${modinstalldir}..." mkdir -p "${modinstalldir}" @@ -372,14 +372,14 @@ fn_create_mods_dir(){ fn_sleep_time fi - # Create lgsm/data/${modsinstalledlist} + # Create lgsm/data/${modsinstalledlist}. if [ ! -f "${modsinstalledlistfullpath}" ]; then touch "${modsinstalledlistfullpath}" fn_script_log_info "Created ${modsinstalledlistfullpath}" fi } -# Create tmp download mod directory +# Create tmp download mod directory. fn_mods_create_tmp_dir(){ if [ ! -d "${modstmpdir}" ]; then mkdir -p "${modstmpdir}" @@ -396,7 +396,7 @@ fn_mods_create_tmp_dir(){ fi } -# Remove the tmp mod download directory when finished +# Remove the tmp mod download directory when finished. fn_mods_clear_tmp_dir(){ if [ -d "${modstmpdir}" ]; then echo -en "clearing mod download directory ${modstmpdir}..." @@ -412,13 +412,13 @@ fn_mods_clear_tmp_dir(){ fi fi - # Clear temp file list as well + # Clear temp file list as well. if [ -f "${modsdir}/.removedfiles.tmp" ]; then rm "${modsdir}/.removedfiles.tmp" fi } -# Counts how many mods were installed +# Counts how many mods were installed. fn_mods_count_installed(){ if [ -f "${modsinstalledlistfullpath}" ]; then installedmodscount="$(wc -l < "${modsinstalledlistfullpath}")" @@ -427,11 +427,11 @@ fn_mods_count_installed(){ fi } -# Exits if no mods were installed +# Exits if no mods were installed. fn_mods_check_installed(){ - # Count installed mods + # Count installed mods. fn_mods_count_installed - # If no mods are found + # If no mods are found. if [ ${installedmodscount} -eq 0 ]; then echo "" fn_print_failure_nl "No installed mods or addons were found" @@ -441,13 +441,13 @@ fn_mods_check_installed(){ fi } -# Checks that mod files list exists and isn't empty +# Checks that mod files list exists and isn't empty. fn_check_mod_files_list(){ - # File list must exist and be valid before any operation on it + # File list must exist and be valid before any operation on it. if [ -f "${modsdir}/${modcommand}-files.txt" ]; then - # How many lines is the file list + # How many lines is the file list. modsfilelistsize="$(wc -l < "${modsdir}/${modcommand}-files.txt")" - # If file list is empty + # If file list is empty. if [ "${modsfilelistsize}" -eq 0 ]; then fn_print_failure "${modcommand}-files.txt is empty" echo "* Unable to remove ${modprettyname}" @@ -461,7 +461,7 @@ fn_check_mod_files_list(){ fi } -## Database initialisation +## Database initialisation. mods_list.sh fn_mods_available diff --git a/lgsm/functions/query_gamedig.sh b/lgsm/functions/query_gamedig.sh index ba5c45f33..2c6192030 100644 --- a/lgsm/functions/query_gamedig.sh +++ b/lgsm/functions/query_gamedig.sh @@ -5,7 +5,7 @@ # Description: Querys a gameserver using node-gamedig. # https://github.com/sonicsnes/node-gamedig -#Check if gamedig and jq are installed +# Check if gamedig and jq are installed. if [ "$(command -v gamedig 2>/dev/null)" ]&&[ "$(command -v jq 2>/dev/null)" ]; then if [ "${engine}" == "idtech3_ql" ]; then @@ -78,56 +78,56 @@ if [ "$(command -v gamedig 2>/dev/null)" ]&&[ "$(command -v jq 2>/dev/null)" ]; fi done - # will bypass query if server offline + # will bypass query if server offline. check_status.sh if [ "${status}" != "0" ]; then - # checks if query is working null = pass + # checks if query is working null = pass. gamedigcmd=$(echo "gamedig --type \"${gamedigengine}\" --host \"${ip}\" --query_port \"${queryport}\"|jq") gamedigraw=$(gamedig --type "${gamedigengine}" --host "${ip}" --query_port "${queryport}") querystatus=$(echo "${gamedigraw}" | jq '.error|length') - + if [ "${querystatus}" != "null" ]; then gamedigcmd=$(echo "gamedig --type \"${gamedigengine}\" --host \"${ip}\" --port \"${queryport}\"|jq") gamedigraw=$(gamedig --type "${gamedigengine}" --host "${ip}" --port "${queryport}") querystatus=$(echo "${gamedigraw}" | jq '.error|length') - - fi - - # server name + fi + + + # server name. gdname=$(echo "${gamedigraw}" | jq -re '.name') if [ "${gdname}" == "null" ]; then unset gdname fi - # numplayers + # numplayers. gdplayers=$(echo "${gamedigraw}" | jq -re '.players|length') if [ "${gdplayers}" == "null" ]; then unset gdplayers fi - # maxplayers + # maxplayers. gdmaxplayers=$(echo "${gamedigraw}" | jq -re '.maxplayers|length') if [ "${gdmaxplayers}" == "null" ]; then unset maxplayers fi - # current map + # current map. gdmap=$(echo "${gamedigraw}" | jq -re '.map') if [ "${gdmap}" == "null" ]; then unset gdmap fi - # current gamemode + # current gamemode. gdgamemode=$(echo "${gamedigraw}" | jq -re '.raw.rules.GameMode_s') if [ "${gdgamemode}" == "null" ]; then unset gdgamemode fi - # numbots + # numbots. gdbots=$(echo "${gamedigraw}" | jq -re '.raw.numbots') if [ "${gdbots}" == "null" ]||[ "${gdbots}" == "0" ]; then unset gdbots fi fi -fi \ No newline at end of file +fi diff --git a/linuxgsm.sh b/linuxgsm.sh index c2607c7ab..c549ef46a 100755 --- a/linuxgsm.sh +++ b/linuxgsm.sh @@ -25,7 +25,7 @@ shortname="core" gameservername="core" rootdir="$(dirname "$(readlink -f "${BASH_SOURCE[0]}")")" selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" -servicename="${selfname}" +servicename="${gameservername}" lockselfname=".${servicename}.lock" lgsmdir="${rootdir}/lgsm" logdir="${rootdir}/log" @@ -35,6 +35,9 @@ serverfiles="${rootdir}/serverfiles" functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" +datadir="${lgsmdir}/data" +serverlist="${datadir}/serverlist.csv" +serverlistmenu="${datadir}/serverlistmenu.csv" configdir="${lgsmdir}/config-lgsm" configdirserver="${configdir}/${gameservername}" configdirdefault="${lgsmdir}/config-default" @@ -47,16 +50,16 @@ githubuser="GameServerManagers" githubrepo="LinuxGSM" githubbranch="master" -# Core Function that is required first +# Core function that is required first. core_functions.sh(){ functionfile="${FUNCNAME}" fn_bootstrap_fetch_file_github "lgsm/functions" "core_functions.sh" "${functionsdir}" "chmodx" "run" "noforcedl" "nomd5" } # Bootstrap -# Fetches the core functions required before passed off to core_dl.sh +# Fetches the core functions required before passed off to core_dl.sh. -# Fetches core functions +# Fetches core functions. fn_bootstrap_fetch_file(){ remote_fileurl="${1}" local_filedir="${2}" @@ -65,17 +68,17 @@ fn_bootstrap_fetch_file(){ run="${5:-0}" forcedl="${6:-0}" md5="${7:-0}" - # download file if missing or download forced + # Download file if missing or download forced. if [ ! -f "${local_filedir}/${local_filename}" ]||[ "${forcedl}" == "forcedl" ]; then if [ ! -d "${local_filedir}" ]; then mkdir -p "${local_filedir}" fi - # Defines curl path + # Defines curl path. curlpath=$(command -v curl 2>/dev/null) - # If curl exists download file + # If curl exists download file. if [ "$(basename "${curlpath}")" == "curl" ]; then - # trap to remove part downloaded files + # Trap to remove part downloaded files. echo -en " fetching ${local_filename}...\c" curlcmd=$(${curlpath} -s --fail -L -o "${local_filedir}/${local_filename}" "${remote_fileurl}" 2>&1) local exitcode=$? @@ -93,14 +96,14 @@ fn_bootstrap_fetch_file(){ echo "[ FAIL ] Curl is not installed" exit 1 fi - # make file chmodx if chmodx is set + # Make file chmodx if chmodx is set. if [ "${chmodx}" == "chmodx" ]; then chmod +x "${local_filedir}/${local_filename}" fi fi if [ -f "${local_filedir}/${local_filename}" ]; then - # run file if run is set + # Run file if run is set. if [ "${run}" == "run" ]; then source "${local_filedir}/${local_filename}" fi @@ -119,11 +122,11 @@ fn_bootstrap_fetch_file_github(){ run="${5:-0}" forcedl="${6:-0}" md5="${7:-0}" - # Passes vars to the file download function + # Passes vars to the file download function. fn_bootstrap_fetch_file "${remote_fileurl}" "${local_filedir}" "${local_filename}" "${chmodx}" "${run}" "${forcedl}" "${md5}" } -# Installer menu +# Installer menu. fn_print_center() { columns="$(tput cols)" @@ -136,7 +139,7 @@ fn_print_horizontal(){ printf '%*s\n' "${COLUMNS:-$(tput cols)}" '' | tr ' ' "${char}" } -# Bash Menu +# Bash menu. fn_install_menu_bash() { local resultvar=$1 title=$2 @@ -160,7 +163,7 @@ fn_install_menu_bash() { done } -# Whiptail/Dialog Menu +# Whiptail/Dialog menu. fn_install_menu_whiptail() { local menucmd=$1 local resultvar=$2 @@ -175,7 +178,7 @@ fn_install_menu_whiptail() { while read -r line; do key=$(echo "${line}" | awk -F "," '{print $3}') val=$(echo "${line}" | awk -F "," '{print $2}') - menu_options+=( ${val//\"} "${key//\"}" ) + menu_options+=( "${val//\"}" "${key//\"}" ) done < "${options}" OPTION=$(${menucmd} --title "${title}" --menu "${caption}" "${height}" "${width}" "${menuheight}" "${menu_options[@]}" 3>&1 1>&2 2>&3) if [ $? == 0 ]; then @@ -185,14 +188,14 @@ fn_install_menu_whiptail() { fi } -# Menu selector +# Menu selector. fn_install_menu() { local resultvar=$1 local selection="" title=$2 caption=$3 options=$4 - # Get menu command + # Get menu command. for menucmd in whiptail dialog bash; do if [ -x "$(command -v "${menucmd}")" ]; then menucmd=$(command -v "${menucmd}") @@ -208,7 +211,7 @@ fn_install_menu() { eval "$resultvar=\"${selection}\"" } -# Gets server info from serverlist.csv and puts in to array +# Gets server info from serverlist.csv and puts in to array. fn_server_info(){ IFS="," server_info_array=($(grep -aw "${userinput}" "${serverlist}")) @@ -226,7 +229,7 @@ fn_install_getopt(){ echo -e "" echo -e "Commands" echo -e "install\t\t| Select server to install." - echo -e "servername\t| e.g $0 csgoserver. Enter name of server/game to install." + echo -e "servername\t| Enter name of game server to install. e.g $0 csgoserver." echo -e "list\t\t| List all servers available for install." exit } @@ -271,25 +274,23 @@ if [ "$(whoami)" == "root" ]; then fi fi -# LinuxGSM installer mode -if [ "${shortname}" == "core" ]; then - datadir="${tmpdir}/data" - serverlist="${datadir}/serverlist.csv" - - # Download the latest serverlist. This is the complete list of all supported servers. - fn_bootstrap_fetch_file_github "lgsm/data" "serverlist.csv" "${datadir}" "nochmodx" "norun" "forcedl" "nomd5" - if [ ! -f "${serverlist}" ]; then - echo "[ FAIL ] serverlist.csv could not be loaded." - exit 1 - fi +# Download the latest serverlist. This is the complete list of all supported servers. +fn_bootstrap_fetch_file_github "lgsm/data" "serverlist.csv" "${datadir}" "nochmodx" "norun" "forcedl" "nomd5" +if [ ! -f "${serverlist}" ]; then + echo "[ FAIL ] serverlist.csv could not be loaded." + exit 1 +fi - if [ "${userinput}" == "list" ]; then +# LinuxGSM installer mode. +if [ "${shortname}" == "core" ]; then + if [ "${userinput}" == "list" ]||[ "${userinput}" == "l" ]; then { - awk -F "," '{print $2 "\t" $3}' "${serverlist}" + tail -n +2 "${serverlist}" | awk -F "," '{print $2 "\t" $3}' } | column -s $'\t' -t | more exit elif [ "${userinput}" == "install" ]||[ "${userinput}" == "i" ]; then - fn_install_menu result "LinuxGSM" "Select game to install" "${serverlist}" + tail -n +2 "${serverlist}" | awk -F "," '{print $1 "," $2 "," $3}' > "${serverlistmenu}" + fn_install_menu result "LinuxGSM" "Select game server to install." "${serverlistmenu}" userinput="${result}" fn_server_info if [ "${result}" == "${gameservername}" ]; then @@ -312,11 +313,11 @@ if [ "${shortname}" == "core" ]; then fn_install_getopt fi -# LinuxGSM Server Mode +# LinuxGSM server mode. else core_functions.sh if [ "${shortname}" != "core-dep" ]; then - # Load LinuxGSM configs + # Load LinuxGSM configs. # These are required to get all the default variables for the specific server. # Load the default config. If missing download it. If changed reload it. if [ ! -f "${configdirdefault}/config-lgsm/${gameservername}/_default.cfg" ]; then @@ -350,14 +351,14 @@ else fi fi source "${configdirserver}/_default.cfg" - # Load the common.cfg config. If missing download it + # Load the common.cfg config. If missing download it. if [ ! -f "${configdirserver}/common.cfg" ]; then fn_fetch_config "lgsm/config-default/config-lgsm" "common-template.cfg" "${configdirserver}" "common.cfg" "${chmodx}" "nochmodx" "norun" "noforcedl" "nomd5" source "${configdirserver}/common.cfg" else source "${configdirserver}/common.cfg" fi - # Load the instance.cfg config. If missing download it + # Load the instance.cfg config. If missing download it. if [ ! -f "${configdirserver}/${servicename}.cfg" ]; then fn_fetch_config "lgsm/config-default/config-lgsm" "instance-template.cfg" "${configdirserver}" "${servicename}.cfg" "nochmodx" "norun" "noforcedl" "nomd5" source "${configdirserver}/${servicename}.cfg" @@ -365,14 +366,14 @@ else source "${configdirserver}/${servicename}.cfg" fi - # Load the linuxgsm.sh in to tmpdir. If missing download it + # Load the linuxgsm.sh in to tmpdir. If missing download it. if [ ! -f "${tmpdir}/linuxgsm.sh" ]; then fn_fetch_file_github "" "linuxgsm.sh" "${tmpdir}" "chmodx" "norun" "noforcedl" "nomd5" fi fi - # Enables ANSI colours from core_messages.sh. Can be disabled with ansi=off + # Enables ANSI colours from core_messages.sh. Can be disabled with ansi=off. fn_ansi_loader - # Prevents running of core_exit.sh for Travis. + # Prevents running of core_exit.sh for Travis-CI. if [ "${travistest}" != "1" ]; then getopt=$1 core_getopt.sh diff --git a/tests/tests_fctrserver.sh b/tests/tests_fctrserver.sh index 4151a7f21..18b2b66bb 100644 --- a/tests/tests_fctrserver.sh +++ b/tests/tests_fctrserver.sh @@ -3,12 +3,25 @@ # Author: Daniel Gibbs # License: MIT License, Copyright (c) 2019 Daniel Gibbs # Purpose: Travis CI Tests: Factorio | Linux Game Server Management Script -# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors -# Documentation: https://docs.linuxgsm.com/ +# Contributors: https://linuxgsm.com/contrib +# Documentation: https://docs.linuxgsm.com # Website: https://linuxgsm.com +# DO NOT EDIT THIS FILE +# LinuxGSM configuration is no longer edited here +# To update your LinuxGSM config go to: +# lgsm/config-lgsm +# https://docs.linuxgsm.com/configuration/linuxgsm-config + +# Debugging +if [ -f ".dev-debug" ]; then + exec 5>dev-debug.log + BASH_XTRACEFD="5" + set -x +fi + travistest="1" -version="180409" +version="v19.6.0" shortname="fctr" gameservername="fctrserver" rootdir="$(dirname "$(readlink -f "${BASH_SOURCE[0]}")")" @@ -23,9 +36,13 @@ serverfiles="${rootdir}/serverfiles" functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" +datadir="${lgsmdir}/data" +serverlist="${datadir}/serverlist.csv" +serverlistmenu="${datadir}/serverlistmenu.csv" configdir="${lgsmdir}/config-lgsm" configdirserver="${configdir}/${gameservername}" configdirdefault="${lgsmdir}/config-default" +userinput="${1}" # Allows for testing not on Travis CI if [ ! -v TRAVIS ]; then @@ -40,16 +57,16 @@ githubuser="GameServerManagers" githubrepo="LinuxGSM" githubbranch="${TRAVIS_BRANCH}" -# Core Function that is required first +# Core function that is required first. core_functions.sh(){ functionfile="${FUNCNAME}" fn_bootstrap_fetch_file_github "lgsm/functions" "core_functions.sh" "${functionsdir}" "chmodx" "run" "noforcedl" "nomd5" } # Bootstrap -# Fetches the core functions required before passed off to core_dl.sh +# Fetches the core functions required before passed off to core_dl.sh. -# Fetches core functions +# Fetches core functions. fn_bootstrap_fetch_file(){ remote_fileurl="${1}" local_filedir="${2}" @@ -58,42 +75,42 @@ fn_bootstrap_fetch_file(){ run="${5:-0}" forcedl="${6:-0}" md5="${7:-0}" - # download file if missing or download forced + # Download file if missing or download forced. if [ ! -f "${local_filedir}/${local_filename}" ]||[ "${forcedl}" == "forcedl" ]; then if [ ! -d "${local_filedir}" ]; then mkdir -p "${local_filedir}" fi - # Defines curl path + # Defines curl path. curlpath=$(command -v curl 2>/dev/null) - # If curl exists download file + # If curl exists download file. if [ "$(basename "${curlpath}")" == "curl" ]; then - # trap to remove part downloaded files + # Trap to remove part downloaded files. echo -en " fetching ${local_filename}...\c" curlcmd=$(${curlpath} -s --fail -L -o "${local_filedir}/${local_filename}" "${remote_fileurl}" 2>&1) local exitcode=$? if [ ${exitcode} -ne 0 ]; then - echo -e "\e[0;31mFAIL\e[0m\n" + echo -e "FAIL" if [ -f "${lgsmlog}" ]; then echo -e "${remote_fileurl}" | tee -a "${lgsmlog}" echo "${curlcmd}" | tee -a "${lgsmlog}" fi exit 1 else - echo -e "\e[0;32mOK\e[0m" + echo -e "OK" fi else echo "[ FAIL ] Curl is not installed" exit 1 fi - # make file chmodx if chmodx is set + # Make file chmodx if chmodx is set. if [ "${chmodx}" == "chmodx" ]; then chmod +x "${local_filedir}/${local_filename}" fi fi if [ -f "${local_filedir}/${local_filename}" ]; then - # run file if run is set + # Run file if run is set. if [ "${run}" == "run" ]; then source "${local_filedir}/${local_filename}" fi @@ -112,11 +129,11 @@ fn_bootstrap_fetch_file_github(){ run="${5:-0}" forcedl="${6:-0}" md5="${7:-0}" - # Passes vars to the file download function + # Passes vars to the file download function. fn_bootstrap_fetch_file "${remote_fileurl}" "${local_filedir}" "${local_filename}" "${chmodx}" "${run}" "${forcedl}" "${md5}" } -# Installer menu +# Installer menu. fn_print_center() { columns="$(tput cols)" @@ -129,7 +146,7 @@ fn_print_horizontal(){ printf '%*s\n' "${COLUMNS:-$(tput cols)}" '' | tr ' ' "${char}" } -# Bash Menu +# Bash menu. fn_install_menu_bash() { local resultvar=$1 title=$2 @@ -153,7 +170,7 @@ fn_install_menu_bash() { done } -# Whiptail/Dialog Menu +# Whiptail/Dialog menu. fn_install_menu_whiptail() { local menucmd=$1 local resultvar=$2 @@ -168,7 +185,7 @@ fn_install_menu_whiptail() { while read -r line; do key=$(echo "${line}" | awk -F "," '{print $3}') val=$(echo "${line}" | awk -F "," '{print $2}') - menu_options+=( ${val//\"} "${key//\"}" ) + menu_options+=( "${val//\"}" "${key//\"}" ) done < "${options}" OPTION=$(${menucmd} --title "${title}" --menu "${caption}" "${height}" "${width}" "${menuheight}" "${menu_options[@]}" 3>&1 1>&2 2>&3) if [ $? == 0 ]; then @@ -178,14 +195,14 @@ fn_install_menu_whiptail() { fi } -# Menu selector +# Menu selector. fn_install_menu() { local resultvar=$1 local selection="" title=$2 caption=$3 options=$4 - # Get menu command + # Get menu command. for menucmd in whiptail dialog bash; do if [ -x "$(command -v "${menucmd}")" ]; then menucmd=$(command -v "${menucmd}") @@ -201,7 +218,7 @@ fn_install_menu() { eval "$resultvar=\"${selection}\"" } -# Gets server info from serverlist.csv and puts in to array +# Gets server info from serverlist.csv and puts in to array. fn_server_info(){ IFS="," server_info_array=($(grep -aw "${userinput}" "${serverlist}")) @@ -219,7 +236,7 @@ fn_install_getopt(){ echo -e "" echo -e "Commands" echo -e "install\t\t| Select server to install." - echo -e "servername\t| e.g $0 csgoserver. Enter name of server/game to install." + echo -e "servername\t| Enter name of game server to install. e.g $0 csgoserver." echo -e "list\t\t| List all servers available for install." exit } @@ -248,9 +265,14 @@ fn_install_file(){ exit } -# Prevent from running this script as root. +# Prevent LinuxGSM from running as root. Except if doing a dependency install. if [ "$(whoami)" == "root" ]; then - if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]; then + if [ "${userinput}" == "install" ]||[ "${userinput}" == "auto-install" ]||[ "${userinput}" == "i" ]||[ "${userinput}" == "ai" ]; then + if [ "${shortname}" == "core" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + fi + elif [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]; then echo "[ FAIL ] Do NOT run this script as root!" exit 1 else @@ -259,26 +281,23 @@ if [ "$(whoami)" == "root" ]; then fi fi -# LinuxGSM installer mode -if [ "${shortname}" == "core" ]; then - userinput=$1 - datadir="${tmpdir}/data" - serverlist="${datadir}/serverlist.csv" - - # Download the latest serverlist. This is the complete list of all supported servers. - fn_bootstrap_fetch_file_github "lgsm/data" "serverlist.csv" "${datadir}" "nochmodx" "norun" "forcedl" "nomd5" - if [ ! -f "${serverlist}" ]; then - echo "[ FAIL ] serverlist.csv could not be loaded." - exit 1 - fi +# Download the latest serverlist. This is the complete list of all supported servers. +fn_bootstrap_fetch_file_github "lgsm/data" "serverlist.csv" "${datadir}" "nochmodx" "norun" "forcedl" "nomd5" +if [ ! -f "${serverlist}" ]; then + echo "[ FAIL ] serverlist.csv could not be loaded." + exit 1 +fi - if [ "${userinput}" == "list" ]; then +# LinuxGSM installer mode. +if [ "${shortname}" == "core" ]; then + if [ "${userinput}" == "list" ]||[ "${userinput}" == "l" ]; then { - awk -F "," '{print $2 "\t" $3}' "${serverlist}" + tail -n +2 "${serverlist}" | awk -F "," '{print $2 "\t" $3}' } | column -s $'\t' -t | more exit elif [ "${userinput}" == "install" ]||[ "${userinput}" == "i" ]; then - fn_install_menu result "LinuxGSM" "Select game to install" "${serverlist}" + tail -n +2 "${serverlist}" | awk -F "," '{print $1 "," $2 "," $3}' > "${serverlistmenu}" + fn_install_menu result "LinuxGSM" "Select game server to install." "${serverlistmenu}" userinput="${result}" fn_server_info if [ "${result}" == "${gameservername}" ]; then @@ -301,65 +320,68 @@ if [ "${shortname}" == "core" ]; then fn_install_getopt fi -# LinuxGSM Server Mode +# LinuxGSM server mode. else core_functions.sh - - # Load LinuxGSM configs - # These are required to get all the default variables for the specific server. - # Load the default config. If missing download it. If changed reload it. - if [ ! -f "${configdirdefault}/config-lgsm/${gameservername}/_default.cfg" ]; then - mkdir -p "${configdirdefault}/config-lgsm/${gameservername}" - fn_fetch_config "lgsm/config-default/config-lgsm/${gameservername}" "_default.cfg" "${configdirdefault}/config-lgsm/${gameservername}" "_default.cfg" "nochmodx" "norun" "noforcedl" "nomd5" - fi - if [ ! -f "${configdirserver}/_default.cfg" ]; then - mkdir -p "${configdirserver}" - echo -en " copying _default.cfg...\c" - cp -R "${configdirdefault}/config-lgsm/${gameservername}/_default.cfg" "${configdirserver}/_default.cfg" - exitcode=$? - if [ ${exitcode} -ne 0 ]; then - echo -e "\e[0;31mFAIL\e[0m\n" - exit 1 - else - echo -e "\e[0;32mOK\e[0m" + if [ "${shortname}" != "core-dep" ]; then + # Load LinuxGSM configs. + # These are required to get all the default variables for the specific server. + # Load the default config. If missing download it. If changed reload it. + if [ ! -f "${configdirdefault}/config-lgsm/${gameservername}/_default.cfg" ]; then + mkdir -p "${configdirdefault}/config-lgsm/${gameservername}" + fn_fetch_config "lgsm/config-default/config-lgsm/${gameservername}" "_default.cfg" "${configdirdefault}/config-lgsm/${gameservername}" "_default.cfg" "nochmodx" "norun" "noforcedl" "nomd5" fi - else - function_file_diff=$(diff -q "${configdirdefault}/config-lgsm/${gameservername}/_default.cfg" "${configdirserver}/_default.cfg") - if [ "${function_file_diff}" != "" ]; then - fn_print_warn_nl "_default.cfg has been altered. reloading config." + if [ ! -f "${configdirserver}/_default.cfg" ]; then + mkdir -p "${configdirserver}" echo -en " copying _default.cfg...\c" cp -R "${configdirdefault}/config-lgsm/${gameservername}/_default.cfg" "${configdirserver}/_default.cfg" exitcode=$? if [ ${exitcode} -ne 0 ]; then - echo -e "\e[0;31mFAIL\e[0m\n" + echo -e "FAIL" exit 1 else - echo -e "\e[0;32mOK\e[0m" + echo -e "OK" + fi + else + function_file_diff=$(diff -q "${configdirdefault}/config-lgsm/${gameservername}/_default.cfg" "${configdirserver}/_default.cfg") + if [ "${function_file_diff}" != "" ]; then + fn_print_warn_nl "_default.cfg has been altered. reloading config." + echo -en " copying _default.cfg...\c" + cp -R "${configdirdefault}/config-lgsm/${gameservername}/_default.cfg" "${configdirserver}/_default.cfg" + exitcode=$? + if [ ${exitcode} -ne 0 ]; then + echo -e "FAIL" + exit 1 + else + echo -e "OK" + fi fi fi - fi - source "${configdirserver}/_default.cfg" - # Load the common.cfg config. If missing download it - if [ ! -f "${configdirserver}/common.cfg" ]; then - fn_fetch_config "lgsm/config-default/config-lgsm" "common-template.cfg" "${configdirserver}" "common.cfg" "${chmodx}" "nochmodx" "norun" "noforcedl" "nomd5" - source "${configdirserver}/common.cfg" - else - source "${configdirserver}/common.cfg" - fi - # Load the instance.cfg config. If missing download it - if [ ! -f "${configdirserver}/${servicename}.cfg" ]; then - fn_fetch_config "lgsm/config-default/config-lgsm" "instance-template.cfg" "${configdirserver}" "${servicename}.cfg" "nochmodx" "norun" "noforcedl" "nomd5" - source "${configdirserver}/${servicename}.cfg" - else - source "${configdirserver}/${servicename}.cfg" - fi - # Load the linuxgsm.sh in to tmpdir. If missing download it - if [ ! -f "${tmpdir}/linuxgsm.sh" ]; then - fn_fetch_file_github "" "linuxgsm.sh" "${tmpdir}" "chmodx" "norun" "noforcedl" "nomd5" - fi + source "${configdirserver}/_default.cfg" + # Load the common.cfg config. If missing download it. + if [ ! -f "${configdirserver}/common.cfg" ]; then + fn_fetch_config "lgsm/config-default/config-lgsm" "common-template.cfg" "${configdirserver}" "common.cfg" "${chmodx}" "nochmodx" "norun" "noforcedl" "nomd5" + source "${configdirserver}/common.cfg" + else + source "${configdirserver}/common.cfg" + fi + # Load the instance.cfg config. If missing download it. + if [ ! -f "${configdirserver}/${servicename}.cfg" ]; then + fn_fetch_config "lgsm/config-default/config-lgsm" "instance-template.cfg" "${configdirserver}" "${servicename}.cfg" "nochmodx" "norun" "noforcedl" "nomd5" + source "${configdirserver}/${servicename}.cfg" + else + source "${configdirserver}/${servicename}.cfg" + fi - # Prevents running of core_exit.sh for Travis. - if [ -z "${travistest}" ]; then + # Load the linuxgsm.sh in to tmpdir. If missing download it. + if [ ! -f "${tmpdir}/linuxgsm.sh" ]; then + fn_fetch_file_github "" "linuxgsm.sh" "${tmpdir}" "chmodx" "norun" "noforcedl" "nomd5" + fi + fi + # Enables ANSI colours from core_messages.sh. Can be disabled with ansi=off. + fn_ansi_loader + # Prevents running of core_exit.sh for Travis-CI. + if [ "${travistest}" != "1" ]; then getopt=$1 core_getopt.sh fi diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index 2f0103025..d3a348b43 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -3,12 +3,25 @@ # Author: Daniel Gibbs # License: MIT License, Copyright (c) 2019 Daniel Gibbs # Purpose: Travis CI Tests: Just Cause 2 | Linux Game Server Management Script -# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors -# Documentation: https://docs.linuxgsm.com/ +# Contributors: https://linuxgsm.com/contrib +# Documentation: https://docs.linuxgsm.com # Website: https://linuxgsm.com +# DO NOT EDIT THIS FILE +# LinuxGSM configuration is no longer edited here +# To update your LinuxGSM config go to: +# lgsm/config-lgsm +# https://docs.linuxgsm.com/configuration/linuxgsm-config + +# Debugging +if [ -f ".dev-debug" ]; then + exec 5>dev-debug.log + BASH_XTRACEFD="5" + set -x +fi + travistest="1" -version="180409" +version="v19.6.0" shortname="jc2" gameservername="jc2server" rootdir="$(dirname "$(readlink -f "${BASH_SOURCE[0]}")")" @@ -23,9 +36,13 @@ serverfiles="${rootdir}/serverfiles" functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" +datadir="${lgsmdir}/data" +serverlist="${datadir}/serverlist.csv" +serverlistmenu="${datadir}/serverlistmenu.csv" configdir="${lgsmdir}/config-lgsm" configdirserver="${configdir}/${gameservername}" configdirdefault="${lgsmdir}/config-default" +userinput="${1}" # Allows for testing not on Travis CI if [ ! -v TRAVIS ]; then @@ -40,16 +57,16 @@ githubuser="GameServerManagers" githubrepo="LinuxGSM" githubbranch="${TRAVIS_BRANCH}" -# Core Function that is required first +# Core function that is required first. core_functions.sh(){ functionfile="${FUNCNAME}" fn_bootstrap_fetch_file_github "lgsm/functions" "core_functions.sh" "${functionsdir}" "chmodx" "run" "noforcedl" "nomd5" } # Bootstrap -# Fetches the core functions required before passed off to core_dl.sh +# Fetches the core functions required before passed off to core_dl.sh. -# Fetches core functions +# Fetches core functions. fn_bootstrap_fetch_file(){ remote_fileurl="${1}" local_filedir="${2}" @@ -58,42 +75,42 @@ fn_bootstrap_fetch_file(){ run="${5:-0}" forcedl="${6:-0}" md5="${7:-0}" - # download file if missing or download forced + # Download file if missing or download forced. if [ ! -f "${local_filedir}/${local_filename}" ]||[ "${forcedl}" == "forcedl" ]; then if [ ! -d "${local_filedir}" ]; then mkdir -p "${local_filedir}" fi - # Defines curl path + # Defines curl path. curlpath=$(command -v curl 2>/dev/null) - # If curl exists download file + # If curl exists download file. if [ "$(basename "${curlpath}")" == "curl" ]; then - # trap to remove part downloaded files + # Trap to remove part downloaded files. echo -en " fetching ${local_filename}...\c" curlcmd=$(${curlpath} -s --fail -L -o "${local_filedir}/${local_filename}" "${remote_fileurl}" 2>&1) local exitcode=$? if [ ${exitcode} -ne 0 ]; then - echo -e "\e[0;31mFAIL\e[0m\n" + echo -e "FAIL" if [ -f "${lgsmlog}" ]; then echo -e "${remote_fileurl}" | tee -a "${lgsmlog}" echo "${curlcmd}" | tee -a "${lgsmlog}" fi exit 1 else - echo -e "\e[0;32mOK\e[0m" + echo -e "OK" fi else echo "[ FAIL ] Curl is not installed" exit 1 fi - # make file chmodx if chmodx is set + # Make file chmodx if chmodx is set. if [ "${chmodx}" == "chmodx" ]; then chmod +x "${local_filedir}/${local_filename}" fi fi if [ -f "${local_filedir}/${local_filename}" ]; then - # run file if run is set + # Run file if run is set. if [ "${run}" == "run" ]; then source "${local_filedir}/${local_filename}" fi @@ -112,11 +129,11 @@ fn_bootstrap_fetch_file_github(){ run="${5:-0}" forcedl="${6:-0}" md5="${7:-0}" - # Passes vars to the file download function + # Passes vars to the file download function. fn_bootstrap_fetch_file "${remote_fileurl}" "${local_filedir}" "${local_filename}" "${chmodx}" "${run}" "${forcedl}" "${md5}" } -# Installer menu +# Installer menu. fn_print_center() { columns="$(tput cols)" @@ -129,7 +146,7 @@ fn_print_horizontal(){ printf '%*s\n' "${COLUMNS:-$(tput cols)}" '' | tr ' ' "${char}" } -# Bash Menu +# Bash menu. fn_install_menu_bash() { local resultvar=$1 title=$2 @@ -153,7 +170,7 @@ fn_install_menu_bash() { done } -# Whiptail/Dialog Menu +# Whiptail/Dialog menu. fn_install_menu_whiptail() { local menucmd=$1 local resultvar=$2 @@ -168,7 +185,7 @@ fn_install_menu_whiptail() { while read -r line; do key=$(echo "${line}" | awk -F "," '{print $3}') val=$(echo "${line}" | awk -F "," '{print $2}') - menu_options+=( ${val//\"} "${key//\"}" ) + menu_options+=( "${val//\"}" "${key//\"}" ) done < "${options}" OPTION=$(${menucmd} --title "${title}" --menu "${caption}" "${height}" "${width}" "${menuheight}" "${menu_options[@]}" 3>&1 1>&2 2>&3) if [ $? == 0 ]; then @@ -178,14 +195,14 @@ fn_install_menu_whiptail() { fi } -# Menu selector +# Menu selector. fn_install_menu() { local resultvar=$1 local selection="" title=$2 caption=$3 options=$4 - # Get menu command + # Get menu command. for menucmd in whiptail dialog bash; do if [ -x "$(command -v "${menucmd}")" ]; then menucmd=$(command -v "${menucmd}") @@ -201,7 +218,7 @@ fn_install_menu() { eval "$resultvar=\"${selection}\"" } -# Gets server info from serverlist.csv and puts in to array +# Gets server info from serverlist.csv and puts in to array. fn_server_info(){ IFS="," server_info_array=($(grep -aw "${userinput}" "${serverlist}")) @@ -219,7 +236,7 @@ fn_install_getopt(){ echo -e "" echo -e "Commands" echo -e "install\t\t| Select server to install." - echo -e "servername\t| e.g $0 csgoserver. Enter name of server/game to install." + echo -e "servername\t| Enter name of game server to install. e.g $0 csgoserver." echo -e "list\t\t| List all servers available for install." exit } @@ -248,9 +265,14 @@ fn_install_file(){ exit } -# Prevent from running this script as root. +# Prevent LinuxGSM from running as root. Except if doing a dependency install. if [ "$(whoami)" == "root" ]; then - if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]; then + if [ "${userinput}" == "install" ]||[ "${userinput}" == "auto-install" ]||[ "${userinput}" == "i" ]||[ "${userinput}" == "ai" ]; then + if [ "${shortname}" == "core" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + fi + elif [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]; then echo "[ FAIL ] Do NOT run this script as root!" exit 1 else @@ -259,26 +281,23 @@ if [ "$(whoami)" == "root" ]; then fi fi -# LinuxGSM installer mode -if [ "${shortname}" == "core" ]; then - userinput=$1 - datadir="${tmpdir}/data" - serverlist="${datadir}/serverlist.csv" - - # Download the latest serverlist. This is the complete list of all supported servers. - fn_bootstrap_fetch_file_github "lgsm/data" "serverlist.csv" "${datadir}" "nochmodx" "norun" "forcedl" "nomd5" - if [ ! -f "${serverlist}" ]; then - echo "[ FAIL ] serverlist.csv could not be loaded." - exit 1 - fi +# Download the latest serverlist. This is the complete list of all supported servers. +fn_bootstrap_fetch_file_github "lgsm/data" "serverlist.csv" "${datadir}" "nochmodx" "norun" "forcedl" "nomd5" +if [ ! -f "${serverlist}" ]; then + echo "[ FAIL ] serverlist.csv could not be loaded." + exit 1 +fi - if [ "${userinput}" == "list" ]; then +# LinuxGSM installer mode. +if [ "${shortname}" == "core" ]; then + if [ "${userinput}" == "list" ]||[ "${userinput}" == "l" ]; then { - awk -F "," '{print $2 "\t" $3}' "${serverlist}" + tail -n +2 "${serverlist}" | awk -F "," '{print $2 "\t" $3}' } | column -s $'\t' -t | more exit elif [ "${userinput}" == "install" ]||[ "${userinput}" == "i" ]; then - fn_install_menu result "LinuxGSM" "Select game to install" "${serverlist}" + tail -n +2 "${serverlist}" | awk -F "," '{print $1 "," $2 "," $3}' > "${serverlistmenu}" + fn_install_menu result "LinuxGSM" "Select game server to install." "${serverlistmenu}" userinput="${result}" fn_server_info if [ "${result}" == "${gameservername}" ]; then @@ -301,65 +320,68 @@ if [ "${shortname}" == "core" ]; then fn_install_getopt fi -# LinuxGSM Server Mode +# LinuxGSM server mode. else core_functions.sh - - # Load LinuxGSM configs - # These are required to get all the default variables for the specific server. - # Load the default config. If missing download it. If changed reload it. - if [ ! -f "${configdirdefault}/config-lgsm/${gameservername}/_default.cfg" ]; then - mkdir -p "${configdirdefault}/config-lgsm/${gameservername}" - fn_fetch_config "lgsm/config-default/config-lgsm/${gameservername}" "_default.cfg" "${configdirdefault}/config-lgsm/${gameservername}" "_default.cfg" "nochmodx" "norun" "noforcedl" "nomd5" - fi - if [ ! -f "${configdirserver}/_default.cfg" ]; then - mkdir -p "${configdirserver}" - echo -en " copying _default.cfg...\c" - cp -R "${configdirdefault}/config-lgsm/${gameservername}/_default.cfg" "${configdirserver}/_default.cfg" - exitcode=$? - if [ ${exitcode} -ne 0 ]; then - echo -e "\e[0;31mFAIL\e[0m\n" - exit 1 - else - echo -e "\e[0;32mOK\e[0m" + if [ "${shortname}" != "core-dep" ]; then + # Load LinuxGSM configs. + # These are required to get all the default variables for the specific server. + # Load the default config. If missing download it. If changed reload it. + if [ ! -f "${configdirdefault}/config-lgsm/${gameservername}/_default.cfg" ]; then + mkdir -p "${configdirdefault}/config-lgsm/${gameservername}" + fn_fetch_config "lgsm/config-default/config-lgsm/${gameservername}" "_default.cfg" "${configdirdefault}/config-lgsm/${gameservername}" "_default.cfg" "nochmodx" "norun" "noforcedl" "nomd5" fi - else - function_file_diff=$(diff -q "${configdirdefault}/config-lgsm/${gameservername}/_default.cfg" "${configdirserver}/_default.cfg") - if [ "${function_file_diff}" != "" ]; then - fn_print_warn_nl "_default.cfg has been altered. reloading config." + if [ ! -f "${configdirserver}/_default.cfg" ]; then + mkdir -p "${configdirserver}" echo -en " copying _default.cfg...\c" cp -R "${configdirdefault}/config-lgsm/${gameservername}/_default.cfg" "${configdirserver}/_default.cfg" exitcode=$? if [ ${exitcode} -ne 0 ]; then - echo -e "\e[0;31mFAIL\e[0m\n" + echo -e "FAIL" exit 1 else - echo -e "\e[0;32mOK\e[0m" + echo -e "OK" + fi + else + function_file_diff=$(diff -q "${configdirdefault}/config-lgsm/${gameservername}/_default.cfg" "${configdirserver}/_default.cfg") + if [ "${function_file_diff}" != "" ]; then + fn_print_warn_nl "_default.cfg has been altered. reloading config." + echo -en " copying _default.cfg...\c" + cp -R "${configdirdefault}/config-lgsm/${gameservername}/_default.cfg" "${configdirserver}/_default.cfg" + exitcode=$? + if [ ${exitcode} -ne 0 ]; then + echo -e "FAIL" + exit 1 + else + echo -e "OK" + fi fi fi - fi - source "${configdirserver}/_default.cfg" - # Load the common.cfg config. If missing download it - if [ ! -f "${configdirserver}/common.cfg" ]; then - fn_fetch_config "lgsm/config-default/config-lgsm" "common-template.cfg" "${configdirserver}" "common.cfg" "${chmodx}" "nochmodx" "norun" "noforcedl" "nomd5" - source "${configdirserver}/common.cfg" - else - source "${configdirserver}/common.cfg" - fi - # Load the instance.cfg config. If missing download it - if [ ! -f "${configdirserver}/${servicename}.cfg" ]; then - fn_fetch_config "lgsm/config-default/config-lgsm" "instance-template.cfg" "${configdirserver}" "${servicename}.cfg" "nochmodx" "norun" "noforcedl" "nomd5" - source "${configdirserver}/${servicename}.cfg" - else - source "${configdirserver}/${servicename}.cfg" - fi - # Load the linuxgsm.sh in to tmpdir. If missing download it - if [ ! -f "${tmpdir}/linuxgsm.sh" ]; then - fn_fetch_file_github "" "linuxgsm.sh" "${tmpdir}" "chmodx" "norun" "noforcedl" "nomd5" - fi + source "${configdirserver}/_default.cfg" + # Load the common.cfg config. If missing download it. + if [ ! -f "${configdirserver}/common.cfg" ]; then + fn_fetch_config "lgsm/config-default/config-lgsm" "common-template.cfg" "${configdirserver}" "common.cfg" "${chmodx}" "nochmodx" "norun" "noforcedl" "nomd5" + source "${configdirserver}/common.cfg" + else + source "${configdirserver}/common.cfg" + fi + # Load the instance.cfg config. If missing download it. + if [ ! -f "${configdirserver}/${servicename}.cfg" ]; then + fn_fetch_config "lgsm/config-default/config-lgsm" "instance-template.cfg" "${configdirserver}" "${servicename}.cfg" "nochmodx" "norun" "noforcedl" "nomd5" + source "${configdirserver}/${servicename}.cfg" + else + source "${configdirserver}/${servicename}.cfg" + fi - # Prevents running of core_exit.sh for Travis. - if [ -z "${travistest}" ]; then + # Load the linuxgsm.sh in to tmpdir. If missing download it. + if [ ! -f "${tmpdir}/linuxgsm.sh" ]; then + fn_fetch_file_github "" "linuxgsm.sh" "${tmpdir}" "chmodx" "norun" "noforcedl" "nomd5" + fi + fi + # Enables ANSI colours from core_messages.sh. Can be disabled with ansi=off. + fn_ansi_loader + # Prevents running of core_exit.sh for Travis-CI. + if [ "${travistest}" != "1" ]; then getopt=$1 core_getopt.sh fi @@ -914,7 +936,6 @@ echo "IP: ${travisip}" echo "" echo "5.0 - Monitor Tests" echo "==================================================================" -info_config.sh echo "" echo "Server IP - Port: ${ip}:${port}" echo "Server IP - Query Port: ${ip}:${queryport}" diff --git a/tests/tests_mcserver.sh b/tests/tests_mcserver.sh index 6df2da2ac..05a7e210a 100644 --- a/tests/tests_mcserver.sh +++ b/tests/tests_mcserver.sh @@ -3,12 +3,25 @@ # Author: Daniel Gibbs # License: MIT License, Copyright (c) 2019 Daniel Gibbs # Purpose: Travis CI Tests: Minecraft | Linux Game Server Management Script -# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors -# Documentation: https://docs.linuxgsm.com/ +# Contributors: https://linuxgsm.com/contrib +# Documentation: https://docs.linuxgsm.com # Website: https://linuxgsm.com +# DO NOT EDIT THIS FILE +# LinuxGSM configuration is no longer edited here +# To update your LinuxGSM config go to: +# lgsm/config-lgsm +# https://docs.linuxgsm.com/configuration/linuxgsm-config + +# Debugging +if [ -f ".dev-debug" ]; then + exec 5>dev-debug.log + BASH_XTRACEFD="5" + set -x +fi + travistest="1" -version="190401" +version="v19.6.0" shortname="mc" gameservername="mcserver" rootdir="$(dirname "$(readlink -f "${BASH_SOURCE[0]}")")" @@ -23,9 +36,13 @@ serverfiles="${rootdir}/serverfiles" functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" +datadir="${lgsmdir}/data" +serverlist="${datadir}/serverlist.csv" +serverlistmenu="${datadir}/serverlistmenu.csv" configdir="${lgsmdir}/config-lgsm" configdirserver="${configdir}/${gameservername}" configdirdefault="${lgsmdir}/config-default" +userinput="${1}" # Allows for testing not on Travis CI if [ ! -v TRAVIS ]; then @@ -40,16 +57,16 @@ githubuser="GameServerManagers" githubrepo="LinuxGSM" githubbranch="${TRAVIS_BRANCH}" -# Core Function that is required first +# Core function that is required first. core_functions.sh(){ functionfile="${FUNCNAME}" fn_bootstrap_fetch_file_github "lgsm/functions" "core_functions.sh" "${functionsdir}" "chmodx" "run" "noforcedl" "nomd5" } # Bootstrap -# Fetches the core functions required before passed off to core_dl.sh +# Fetches the core functions required before passed off to core_dl.sh. -# Fetches core functions +# Fetches core functions. fn_bootstrap_fetch_file(){ remote_fileurl="${1}" local_filedir="${2}" @@ -58,42 +75,42 @@ fn_bootstrap_fetch_file(){ run="${5:-0}" forcedl="${6:-0}" md5="${7:-0}" - # download file if missing or download forced + # Download file if missing or download forced. if [ ! -f "${local_filedir}/${local_filename}" ]||[ "${forcedl}" == "forcedl" ]; then if [ ! -d "${local_filedir}" ]; then mkdir -p "${local_filedir}" fi - # Defines curl path + # Defines curl path. curlpath=$(command -v curl 2>/dev/null) - # If curl exists download file + # If curl exists download file. if [ "$(basename "${curlpath}")" == "curl" ]; then - # trap to remove part downloaded files + # Trap to remove part downloaded files. echo -en " fetching ${local_filename}...\c" curlcmd=$(${curlpath} -s --fail -L -o "${local_filedir}/${local_filename}" "${remote_fileurl}" 2>&1) local exitcode=$? if [ ${exitcode} -ne 0 ]; then - echo -e "\e[0;31mFAIL\e[0m\n" + echo -e "FAIL" if [ -f "${lgsmlog}" ]; then echo -e "${remote_fileurl}" | tee -a "${lgsmlog}" echo "${curlcmd}" | tee -a "${lgsmlog}" fi exit 1 else - echo -e "\e[0;32mOK\e[0m" + echo -e "OK" fi else echo "[ FAIL ] Curl is not installed" exit 1 fi - # make file chmodx if chmodx is set + # Make file chmodx if chmodx is set. if [ "${chmodx}" == "chmodx" ]; then chmod +x "${local_filedir}/${local_filename}" fi fi if [ -f "${local_filedir}/${local_filename}" ]; then - # run file if run is set + # Run file if run is set. if [ "${run}" == "run" ]; then source "${local_filedir}/${local_filename}" fi @@ -112,11 +129,11 @@ fn_bootstrap_fetch_file_github(){ run="${5:-0}" forcedl="${6:-0}" md5="${7:-0}" - # Passes vars to the file download function + # Passes vars to the file download function. fn_bootstrap_fetch_file "${remote_fileurl}" "${local_filedir}" "${local_filename}" "${chmodx}" "${run}" "${forcedl}" "${md5}" } -# Installer menu +# Installer menu. fn_print_center() { columns="$(tput cols)" @@ -129,7 +146,7 @@ fn_print_horizontal(){ printf '%*s\n' "${COLUMNS:-$(tput cols)}" '' | tr ' ' "${char}" } -# Bash Menu +# Bash menu. fn_install_menu_bash() { local resultvar=$1 title=$2 @@ -153,7 +170,7 @@ fn_install_menu_bash() { done } -# Whiptail/Dialog Menu +# Whiptail/Dialog menu. fn_install_menu_whiptail() { local menucmd=$1 local resultvar=$2 @@ -168,7 +185,7 @@ fn_install_menu_whiptail() { while read -r line; do key=$(echo "${line}" | awk -F "," '{print $3}') val=$(echo "${line}" | awk -F "," '{print $2}') - menu_options+=( ${val//\"} "${key//\"}" ) + menu_options+=( "${val//\"}" "${key//\"}" ) done < "${options}" OPTION=$(${menucmd} --title "${title}" --menu "${caption}" "${height}" "${width}" "${menuheight}" "${menu_options[@]}" 3>&1 1>&2 2>&3) if [ $? == 0 ]; then @@ -178,14 +195,14 @@ fn_install_menu_whiptail() { fi } -# Menu selector +# Menu selector. fn_install_menu() { local resultvar=$1 local selection="" title=$2 caption=$3 options=$4 - # Get menu command + # Get menu command. for menucmd in whiptail dialog bash; do if [ -x "$(command -v "${menucmd}")" ]; then menucmd=$(command -v "${menucmd}") @@ -201,7 +218,7 @@ fn_install_menu() { eval "$resultvar=\"${selection}\"" } -# Gets server info from serverlist.csv and puts in to array +# Gets server info from serverlist.csv and puts in to array. fn_server_info(){ IFS="," server_info_array=($(grep -aw "${userinput}" "${serverlist}")) @@ -219,7 +236,7 @@ fn_install_getopt(){ echo -e "" echo -e "Commands" echo -e "install\t\t| Select server to install." - echo -e "servername\t| e.g $0 csgoserver. Enter name of server/game to install." + echo -e "servername\t| Enter name of game server to install. e.g $0 csgoserver." echo -e "list\t\t| List all servers available for install." exit } @@ -248,9 +265,14 @@ fn_install_file(){ exit } -# Prevent from running this script as root. +# Prevent LinuxGSM from running as root. Except if doing a dependency install. if [ "$(whoami)" == "root" ]; then - if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]; then + if [ "${userinput}" == "install" ]||[ "${userinput}" == "auto-install" ]||[ "${userinput}" == "i" ]||[ "${userinput}" == "ai" ]; then + if [ "${shortname}" == "core" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + fi + elif [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]; then echo "[ FAIL ] Do NOT run this script as root!" exit 1 else @@ -259,26 +281,23 @@ if [ "$(whoami)" == "root" ]; then fi fi -# LinuxGSM installer mode -if [ "${shortname}" == "core" ]; then - userinput=$1 - datadir="${tmpdir}/data" - serverlist="${datadir}/serverlist.csv" - - # Download the latest serverlist. This is the complete list of all supported servers. - fn_bootstrap_fetch_file_github "lgsm/data" "serverlist.csv" "${datadir}" "nochmodx" "norun" "forcedl" "nomd5" - if [ ! -f "${serverlist}" ]; then - echo "[ FAIL ] serverlist.csv could not be loaded." - exit 1 - fi +# Download the latest serverlist. This is the complete list of all supported servers. +fn_bootstrap_fetch_file_github "lgsm/data" "serverlist.csv" "${datadir}" "nochmodx" "norun" "forcedl" "nomd5" +if [ ! -f "${serverlist}" ]; then + echo "[ FAIL ] serverlist.csv could not be loaded." + exit 1 +fi - if [ "${userinput}" == "list" ]; then +# LinuxGSM installer mode. +if [ "${shortname}" == "core" ]; then + if [ "${userinput}" == "list" ]||[ "${userinput}" == "l" ]; then { - awk -F "," '{print $2 "\t" $3}' "${serverlist}" + tail -n +2 "${serverlist}" | awk -F "," '{print $2 "\t" $3}' } | column -s $'\t' -t | more exit elif [ "${userinput}" == "install" ]||[ "${userinput}" == "i" ]; then - fn_install_menu result "LinuxGSM" "Select game to install" "${serverlist}" + tail -n +2 "${serverlist}" | awk -F "," '{print $1 "," $2 "," $3}' > "${serverlistmenu}" + fn_install_menu result "LinuxGSM" "Select game server to install." "${serverlistmenu}" userinput="${result}" fn_server_info if [ "${result}" == "${gameservername}" ]; then @@ -301,65 +320,68 @@ if [ "${shortname}" == "core" ]; then fn_install_getopt fi -# LinuxGSM Server Mode +# LinuxGSM server mode. else core_functions.sh - - # Load LinuxGSM configs - # These are required to get all the default variables for the specific server. - # Load the default config. If missing download it. If changed reload it. - if [ ! -f "${configdirdefault}/config-lgsm/${gameservername}/_default.cfg" ]; then - mkdir -p "${configdirdefault}/config-lgsm/${gameservername}" - fn_fetch_config "lgsm/config-default/config-lgsm/${gameservername}" "_default.cfg" "${configdirdefault}/config-lgsm/${gameservername}" "_default.cfg" "nochmodx" "norun" "noforcedl" "nomd5" - fi - if [ ! -f "${configdirserver}/_default.cfg" ]; then - mkdir -p "${configdirserver}" - echo -en " copying _default.cfg...\c" - cp -R "${configdirdefault}/config-lgsm/${gameservername}/_default.cfg" "${configdirserver}/_default.cfg" - exitcode=$? - if [ ${exitcode} -ne 0 ]; then - echo -e "\e[0;31mFAIL\e[0m\n" - exit 1 - else - echo -e "\e[0;32mOK\e[0m" + if [ "${shortname}" != "core-dep" ]; then + # Load LinuxGSM configs. + # These are required to get all the default variables for the specific server. + # Load the default config. If missing download it. If changed reload it. + if [ ! -f "${configdirdefault}/config-lgsm/${gameservername}/_default.cfg" ]; then + mkdir -p "${configdirdefault}/config-lgsm/${gameservername}" + fn_fetch_config "lgsm/config-default/config-lgsm/${gameservername}" "_default.cfg" "${configdirdefault}/config-lgsm/${gameservername}" "_default.cfg" "nochmodx" "norun" "noforcedl" "nomd5" fi - else - function_file_diff=$(diff -q "${configdirdefault}/config-lgsm/${gameservername}/_default.cfg" "${configdirserver}/_default.cfg") - if [ "${function_file_diff}" != "" ]; then - fn_print_warn_nl "_default.cfg has been altered. reloading config." + if [ ! -f "${configdirserver}/_default.cfg" ]; then + mkdir -p "${configdirserver}" echo -en " copying _default.cfg...\c" cp -R "${configdirdefault}/config-lgsm/${gameservername}/_default.cfg" "${configdirserver}/_default.cfg" exitcode=$? if [ ${exitcode} -ne 0 ]; then - echo -e "\e[0;31mFAIL\e[0m\n" + echo -e "FAIL" exit 1 else - echo -e "\e[0;32mOK\e[0m" + echo -e "OK" + fi + else + function_file_diff=$(diff -q "${configdirdefault}/config-lgsm/${gameservername}/_default.cfg" "${configdirserver}/_default.cfg") + if [ "${function_file_diff}" != "" ]; then + fn_print_warn_nl "_default.cfg has been altered. reloading config." + echo -en " copying _default.cfg...\c" + cp -R "${configdirdefault}/config-lgsm/${gameservername}/_default.cfg" "${configdirserver}/_default.cfg" + exitcode=$? + if [ ${exitcode} -ne 0 ]; then + echo -e "FAIL" + exit 1 + else + echo -e "OK" + fi fi fi - fi - source "${configdirserver}/_default.cfg" - # Load the common.cfg config. If missing download it - if [ ! -f "${configdirserver}/common.cfg" ]; then - fn_fetch_config "lgsm/config-default/config-lgsm" "common-template.cfg" "${configdirserver}" "common.cfg" "${chmodx}" "nochmodx" "norun" "noforcedl" "nomd5" - source "${configdirserver}/common.cfg" - else - source "${configdirserver}/common.cfg" - fi - # Load the instance.cfg config. If missing download it - if [ ! -f "${configdirserver}/${servicename}.cfg" ]; then - fn_fetch_config "lgsm/config-default/config-lgsm" "instance-template.cfg" "${configdirserver}" "${servicename}.cfg" "nochmodx" "norun" "noforcedl" "nomd5" - source "${configdirserver}/${servicename}.cfg" - else - source "${configdirserver}/${servicename}.cfg" - fi - # Load the linuxgsm.sh in to tmpdir. If missing download it - if [ ! -f "${tmpdir}/linuxgsm.sh" ]; then - fn_fetch_file_github "" "linuxgsm.sh" "${tmpdir}" "chmodx" "norun" "noforcedl" "nomd5" - fi + source "${configdirserver}/_default.cfg" + # Load the common.cfg config. If missing download it. + if [ ! -f "${configdirserver}/common.cfg" ]; then + fn_fetch_config "lgsm/config-default/config-lgsm" "common-template.cfg" "${configdirserver}" "common.cfg" "${chmodx}" "nochmodx" "norun" "noforcedl" "nomd5" + source "${configdirserver}/common.cfg" + else + source "${configdirserver}/common.cfg" + fi + # Load the instance.cfg config. If missing download it. + if [ ! -f "${configdirserver}/${servicename}.cfg" ]; then + fn_fetch_config "lgsm/config-default/config-lgsm" "instance-template.cfg" "${configdirserver}" "${servicename}.cfg" "nochmodx" "norun" "noforcedl" "nomd5" + source "${configdirserver}/${servicename}.cfg" + else + source "${configdirserver}/${servicename}.cfg" + fi - # Prevents running of core_exit.sh for Travis. - if [ -z "${travistest}" ]; then + # Load the linuxgsm.sh in to tmpdir. If missing download it. + if [ ! -f "${tmpdir}/linuxgsm.sh" ]; then + fn_fetch_file_github "" "linuxgsm.sh" "${tmpdir}" "chmodx" "norun" "noforcedl" "nomd5" + fi + fi + # Enables ANSI colours from core_messages.sh. Can be disabled with ansi=off. + fn_ansi_loader + # Prevents running of core_exit.sh for Travis-CI. + if [ "${travistest}" != "1" ]; then getopt=$1 core_getopt.sh fi @@ -783,7 +805,6 @@ echo "IP: ${travisip}" echo "" echo "5.0 - Monitor Tests" echo "==================================================================" -info_config.sh echo "" echo "Server IP - Port: ${ip}:${port}" echo "Server IP - Query Port: ${ip}:${queryport}" diff --git a/tests/tests_ts3server.sh b/tests/tests_ts3server.sh index f4de2baa5..9aa929d55 100644 --- a/tests/tests_ts3server.sh +++ b/tests/tests_ts3server.sh @@ -3,12 +3,25 @@ # Author: Daniel Gibbs # License: MIT License, Copyright (c) 2019 Daniel Gibbs # Purpose: Travis CI Tests: Teamspeak 3 | Linux Game Server Management Script -# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors -# Documentation: https://docs.linuxgsm.com/ +# Contributors: https://linuxgsm.com/contrib +# Documentation: https://docs.linuxgsm.com # Website: https://linuxgsm.com +# DO NOT EDIT THIS FILE +# LinuxGSM configuration is no longer edited here +# To update your LinuxGSM config go to: +# lgsm/config-lgsm +# https://docs.linuxgsm.com/configuration/linuxgsm-config + +# Debugging +if [ -f ".dev-debug" ]; then + exec 5>dev-debug.log + BASH_XTRACEFD="5" + set -x +fi + travistest="1" -version="180409" +version="v19.6.0" shortname="ts3" gameservername="ts3server" rootdir="$(dirname "$(readlink -f "${BASH_SOURCE[0]}")")" @@ -23,9 +36,13 @@ serverfiles="${rootdir}/serverfiles" functionsdir="${lgsmdir}/functions" libdir="${lgsmdir}/lib" tmpdir="${lgsmdir}/tmp" +datadir="${lgsmdir}/data" +serverlist="${datadir}/serverlist.csv" +serverlistmenu="${datadir}/serverlistmenu.csv" configdir="${lgsmdir}/config-lgsm" configdirserver="${configdir}/${gameservername}" configdirdefault="${lgsmdir}/config-default" +userinput="${1}" # Allows for testing not on Travis CI if [ ! -v TRAVIS ]; then @@ -40,16 +57,16 @@ githubuser="GameServerManagers" githubrepo="LinuxGSM" githubbranch="${TRAVIS_BRANCH}" -# Core Function that is required first +# Core function that is required first. core_functions.sh(){ functionfile="${FUNCNAME}" fn_bootstrap_fetch_file_github "lgsm/functions" "core_functions.sh" "${functionsdir}" "chmodx" "run" "noforcedl" "nomd5" } # Bootstrap -# Fetches the core functions required before passed off to core_dl.sh +# Fetches the core functions required before passed off to core_dl.sh. -# Fetches core functions +# Fetches core functions. fn_bootstrap_fetch_file(){ remote_fileurl="${1}" local_filedir="${2}" @@ -58,42 +75,42 @@ fn_bootstrap_fetch_file(){ run="${5:-0}" forcedl="${6:-0}" md5="${7:-0}" - # download file if missing or download forced + # Download file if missing or download forced. if [ ! -f "${local_filedir}/${local_filename}" ]||[ "${forcedl}" == "forcedl" ]; then if [ ! -d "${local_filedir}" ]; then mkdir -p "${local_filedir}" fi - # Defines curl path + # Defines curl path. curlpath=$(command -v curl 2>/dev/null) - # If curl exists download file + # If curl exists download file. if [ "$(basename "${curlpath}")" == "curl" ]; then - # trap to remove part downloaded files + # Trap to remove part downloaded files. echo -en " fetching ${local_filename}...\c" curlcmd=$(${curlpath} -s --fail -L -o "${local_filedir}/${local_filename}" "${remote_fileurl}" 2>&1) local exitcode=$? if [ ${exitcode} -ne 0 ]; then - echo -e "\e[0;31mFAIL\e[0m\n" + echo -e "FAIL" if [ -f "${lgsmlog}" ]; then echo -e "${remote_fileurl}" | tee -a "${lgsmlog}" echo "${curlcmd}" | tee -a "${lgsmlog}" fi exit 1 else - echo -e "\e[0;32mOK\e[0m" + echo -e "OK" fi else echo "[ FAIL ] Curl is not installed" exit 1 fi - # make file chmodx if chmodx is set + # Make file chmodx if chmodx is set. if [ "${chmodx}" == "chmodx" ]; then chmod +x "${local_filedir}/${local_filename}" fi fi if [ -f "${local_filedir}/${local_filename}" ]; then - # run file if run is set + # Run file if run is set. if [ "${run}" == "run" ]; then source "${local_filedir}/${local_filename}" fi @@ -112,11 +129,11 @@ fn_bootstrap_fetch_file_github(){ run="${5:-0}" forcedl="${6:-0}" md5="${7:-0}" - # Passes vars to the file download function + # Passes vars to the file download function. fn_bootstrap_fetch_file "${remote_fileurl}" "${local_filedir}" "${local_filename}" "${chmodx}" "${run}" "${forcedl}" "${md5}" } -# Installer menu +# Installer menu. fn_print_center() { columns="$(tput cols)" @@ -129,7 +146,7 @@ fn_print_horizontal(){ printf '%*s\n' "${COLUMNS:-$(tput cols)}" '' | tr ' ' "${char}" } -# Bash Menu +# Bash menu. fn_install_menu_bash() { local resultvar=$1 title=$2 @@ -153,7 +170,7 @@ fn_install_menu_bash() { done } -# Whiptail/Dialog Menu +# Whiptail/Dialog menu. fn_install_menu_whiptail() { local menucmd=$1 local resultvar=$2 @@ -168,7 +185,7 @@ fn_install_menu_whiptail() { while read -r line; do key=$(echo "${line}" | awk -F "," '{print $3}') val=$(echo "${line}" | awk -F "," '{print $2}') - menu_options+=( ${val//\"} "${key//\"}" ) + menu_options+=( "${val//\"}" "${key//\"}" ) done < "${options}" OPTION=$(${menucmd} --title "${title}" --menu "${caption}" "${height}" "${width}" "${menuheight}" "${menu_options[@]}" 3>&1 1>&2 2>&3) if [ $? == 0 ]; then @@ -178,14 +195,14 @@ fn_install_menu_whiptail() { fi } -# Menu selector +# Menu selector. fn_install_menu() { local resultvar=$1 local selection="" title=$2 caption=$3 options=$4 - # Get menu command + # Get menu command. for menucmd in whiptail dialog bash; do if [ -x "$(command -v "${menucmd}")" ]; then menucmd=$(command -v "${menucmd}") @@ -201,7 +218,7 @@ fn_install_menu() { eval "$resultvar=\"${selection}\"" } -# Gets server info from serverlist.csv and puts in to array +# Gets server info from serverlist.csv and puts in to array. fn_server_info(){ IFS="," server_info_array=($(grep -aw "${userinput}" "${serverlist}")) @@ -219,7 +236,7 @@ fn_install_getopt(){ echo -e "" echo -e "Commands" echo -e "install\t\t| Select server to install." - echo -e "servername\t| e.g $0 csgoserver. Enter name of server/game to install." + echo -e "servername\t| Enter name of game server to install. e.g $0 csgoserver." echo -e "list\t\t| List all servers available for install." exit } @@ -248,9 +265,14 @@ fn_install_file(){ exit } -# Prevent from running this script as root. +# Prevent LinuxGSM from running as root. Except if doing a dependency install. if [ "$(whoami)" == "root" ]; then - if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]; then + if [ "${userinput}" == "install" ]||[ "${userinput}" == "auto-install" ]||[ "${userinput}" == "i" ]||[ "${userinput}" == "ai" ]; then + if [ "${shortname}" == "core" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + fi + elif [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]; then echo "[ FAIL ] Do NOT run this script as root!" exit 1 else @@ -259,26 +281,23 @@ if [ "$(whoami)" == "root" ]; then fi fi -# LinuxGSM installer mode -if [ "${shortname}" == "core" ]; then - userinput=$1 - datadir="${tmpdir}/data" - serverlist="${datadir}/serverlist.csv" - - # Download the latest serverlist. This is the complete list of all supported servers. - fn_bootstrap_fetch_file_github "lgsm/data" "serverlist.csv" "${datadir}" "nochmodx" "norun" "forcedl" "nomd5" - if [ ! -f "${serverlist}" ]; then - echo "[ FAIL ] serverlist.csv could not be loaded." - exit 1 - fi +# Download the latest serverlist. This is the complete list of all supported servers. +fn_bootstrap_fetch_file_github "lgsm/data" "serverlist.csv" "${datadir}" "nochmodx" "norun" "forcedl" "nomd5" +if [ ! -f "${serverlist}" ]; then + echo "[ FAIL ] serverlist.csv could not be loaded." + exit 1 +fi - if [ "${userinput}" == "list" ]; then +# LinuxGSM installer mode. +if [ "${shortname}" == "core" ]; then + if [ "${userinput}" == "list" ]||[ "${userinput}" == "l" ]; then { - awk -F "," '{print $2 "\t" $3}' "${serverlist}" + tail -n +2 "${serverlist}" | awk -F "," '{print $2 "\t" $3}' } | column -s $'\t' -t | more exit elif [ "${userinput}" == "install" ]||[ "${userinput}" == "i" ]; then - fn_install_menu result "LinuxGSM" "Select game to install" "${serverlist}" + tail -n +2 "${serverlist}" | awk -F "," '{print $1 "," $2 "," $3}' > "${serverlistmenu}" + fn_install_menu result "LinuxGSM" "Select game server to install." "${serverlistmenu}" userinput="${result}" fn_server_info if [ "${result}" == "${gameservername}" ]; then @@ -301,65 +320,68 @@ if [ "${shortname}" == "core" ]; then fn_install_getopt fi -# LinuxGSM Server Mode +# LinuxGSM server mode. else core_functions.sh - - # Load LinuxGSM configs - # These are required to get all the default variables for the specific server. - # Load the default config. If missing download it. If changed reload it. - if [ ! -f "${configdirdefault}/config-lgsm/${gameservername}/_default.cfg" ]; then - mkdir -p "${configdirdefault}/config-lgsm/${gameservername}" - fn_fetch_config "lgsm/config-default/config-lgsm/${gameservername}" "_default.cfg" "${configdirdefault}/config-lgsm/${gameservername}" "_default.cfg" "nochmodx" "norun" "noforcedl" "nomd5" - fi - if [ ! -f "${configdirserver}/_default.cfg" ]; then - mkdir -p "${configdirserver}" - echo -en " copying _default.cfg...\c" - cp -R "${configdirdefault}/config-lgsm/${gameservername}/_default.cfg" "${configdirserver}/_default.cfg" - exitcode=$? - if [ ${exitcode} -ne 0 ]; then - echo -e "\e[0;31mFAIL\e[0m\n" - exit 1 - else - echo -e "\e[0;32mOK\e[0m" + if [ "${shortname}" != "core-dep" ]; then + # Load LinuxGSM configs. + # These are required to get all the default variables for the specific server. + # Load the default config. If missing download it. If changed reload it. + if [ ! -f "${configdirdefault}/config-lgsm/${gameservername}/_default.cfg" ]; then + mkdir -p "${configdirdefault}/config-lgsm/${gameservername}" + fn_fetch_config "lgsm/config-default/config-lgsm/${gameservername}" "_default.cfg" "${configdirdefault}/config-lgsm/${gameservername}" "_default.cfg" "nochmodx" "norun" "noforcedl" "nomd5" fi - else - function_file_diff=$(diff -q "${configdirdefault}/config-lgsm/${gameservername}/_default.cfg" "${configdirserver}/_default.cfg") - if [ "${function_file_diff}" != "" ]; then - fn_print_warn_nl "_default.cfg has been altered. reloading config." + if [ ! -f "${configdirserver}/_default.cfg" ]; then + mkdir -p "${configdirserver}" echo -en " copying _default.cfg...\c" cp -R "${configdirdefault}/config-lgsm/${gameservername}/_default.cfg" "${configdirserver}/_default.cfg" exitcode=$? if [ ${exitcode} -ne 0 ]; then - echo -e "\e[0;31mFAIL\e[0m\n" + echo -e "FAIL" exit 1 else - echo -e "\e[0;32mOK\e[0m" + echo -e "OK" + fi + else + function_file_diff=$(diff -q "${configdirdefault}/config-lgsm/${gameservername}/_default.cfg" "${configdirserver}/_default.cfg") + if [ "${function_file_diff}" != "" ]; then + fn_print_warn_nl "_default.cfg has been altered. reloading config." + echo -en " copying _default.cfg...\c" + cp -R "${configdirdefault}/config-lgsm/${gameservername}/_default.cfg" "${configdirserver}/_default.cfg" + exitcode=$? + if [ ${exitcode} -ne 0 ]; then + echo -e "FAIL" + exit 1 + else + echo -e "OK" + fi fi fi - fi - source "${configdirserver}/_default.cfg" - # Load the common.cfg config. If missing download it - if [ ! -f "${configdirserver}/common.cfg" ]; then - fn_fetch_config "lgsm/config-default/config-lgsm" "common-template.cfg" "${configdirserver}" "common.cfg" "${chmodx}" "nochmodx" "norun" "noforcedl" "nomd5" - source "${configdirserver}/common.cfg" - else - source "${configdirserver}/common.cfg" - fi - # Load the instance.cfg config. If missing download it - if [ ! -f "${configdirserver}/${servicename}.cfg" ]; then - fn_fetch_config "lgsm/config-default/config-lgsm" "instance-template.cfg" "${configdirserver}" "${servicename}.cfg" "nochmodx" "norun" "noforcedl" "nomd5" - source "${configdirserver}/${servicename}.cfg" - else - source "${configdirserver}/${servicename}.cfg" - fi - # Load the linuxgsm.sh in to tmpdir. If missing download it - if [ ! -f "${tmpdir}/linuxgsm.sh" ]; then - fn_fetch_file_github "" "linuxgsm.sh" "${tmpdir}" "chmodx" "norun" "noforcedl" "nomd5" - fi + source "${configdirserver}/_default.cfg" + # Load the common.cfg config. If missing download it. + if [ ! -f "${configdirserver}/common.cfg" ]; then + fn_fetch_config "lgsm/config-default/config-lgsm" "common-template.cfg" "${configdirserver}" "common.cfg" "${chmodx}" "nochmodx" "norun" "noforcedl" "nomd5" + source "${configdirserver}/common.cfg" + else + source "${configdirserver}/common.cfg" + fi + # Load the instance.cfg config. If missing download it. + if [ ! -f "${configdirserver}/${servicename}.cfg" ]; then + fn_fetch_config "lgsm/config-default/config-lgsm" "instance-template.cfg" "${configdirserver}" "${servicename}.cfg" "nochmodx" "norun" "noforcedl" "nomd5" + source "${configdirserver}/${servicename}.cfg" + else + source "${configdirserver}/${servicename}.cfg" + fi - # Prevents running of core_exit.sh for Travis. - if [ -z "${travistest}" ]; then + # Load the linuxgsm.sh in to tmpdir. If missing download it. + if [ ! -f "${tmpdir}/linuxgsm.sh" ]; then + fn_fetch_file_github "" "linuxgsm.sh" "${tmpdir}" "chmodx" "norun" "noforcedl" "nomd5" + fi + fi + # Enables ANSI colours from core_messages.sh. Can be disabled with ansi=off. + fn_ansi_loader + # Prevents running of core_exit.sh for Travis-CI. + if [ "${travistest}" != "1" ]; then getopt=$1 core_getopt.sh fi @@ -760,7 +782,6 @@ grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log" | sed 's/functionfile=//g echo "" echo "5.0 - Monitor Tests" echo "==================================================================" - echo "" echo "Server IP - Port: ${ip}:${port}" echo "Server IP - Query Port: ${ip}:${queryport}" From eb391b13ee9385043336c872a9ca050e344e2fbd Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 16 Jun 2019 09:25:45 +0100 Subject: [PATCH 15/20] feat(monitor): monitor queries will not begin immediately after start (#2391) A delay timer has been added to give game servers time to boot before monitor begins query. This is useful for large game servers or that have several mods querydelay setting has been added to _default.cfg --- .../config-lgsm/arkserver/_default.cfg | 4 ++++ .../config-lgsm/arma3server/_default.cfg | 4 ++++ .../config-lgsm/bb2server/_default.cfg | 4 ++++ .../config-lgsm/bbserver/_default.cfg | 4 ++++ .../config-lgsm/bdserver/_default.cfg | 4 ++++ .../config-lgsm/bf1942server/_default.cfg | 4 ++++ .../config-lgsm/bmdmserver/_default.cfg | 4 ++++ .../config-lgsm/boserver/_default.cfg | 4 ++++ .../config-lgsm/bsserver/_default.cfg | 4 ++++ .../config-lgsm/bt1944server/_default.cfg | 4 ++++ .../config-lgsm/ccserver/_default.cfg | 4 ++++ .../config-lgsm/cod2server/_default.cfg | 4 ++++ .../config-lgsm/cod4server/_default.cfg | 4 ++++ .../config-lgsm/codserver/_default.cfg | 4 ++++ .../config-lgsm/coduoserver/_default.cfg | 4 ++++ .../config-lgsm/codwawserver/_default.cfg | 4 ++++ .../config-lgsm/csczserver/_default.cfg | 4 ++++ .../config-lgsm/csgoserver/_default.cfg | 4 ++++ .../config-lgsm/csserver/_default.cfg | 4 ++++ .../config-lgsm/cssserver/_default.cfg | 4 ++++ .../config-lgsm/dabserver/_default.cfg | 4 ++++ .../config-lgsm/dmcserver/_default.cfg | 4 ++++ .../config-lgsm/dodserver/_default.cfg | 4 ++++ .../config-lgsm/dodsserver/_default.cfg | 4 ++++ .../config-lgsm/doiserver/_default.cfg | 4 ++++ .../config-lgsm/dstserver/_default.cfg | 4 ++++ .../config-lgsm/dysserver/_default.cfg | 4 ++++ .../config-lgsm/ecoserver/_default.cfg | 4 ++++ .../config-lgsm/emserver/_default.cfg | 4 ++++ .../config-lgsm/etlserver/_default.cfg | 4 ++++ .../config-lgsm/fctrserver/_default.cfg | 4 ++++ .../config-lgsm/fofserver/_default.cfg | 4 ++++ .../config-lgsm/gesserver/_default.cfg | 4 ++++ .../config-lgsm/gmodserver/_default.cfg | 4 ++++ .../config-lgsm/hl2dmserver/_default.cfg | 4 ++++ .../config-lgsm/hldmserver/_default.cfg | 4 ++++ .../config-lgsm/hldmsserver/_default.cfg | 4 ++++ .../config-lgsm/hwserver/_default.cfg | 4 ++++ .../config-lgsm/insserver/_default.cfg | 4 ++++ .../config-lgsm/inssserver/_default.cfg | 4 ++++ .../config-lgsm/iosserver/_default.cfg | 4 ++++ .../config-lgsm/jc2server/_default.cfg | 4 ++++ .../config-lgsm/jc3server/_default.cfg | 4 ++++ .../config-lgsm/kf2server/_default.cfg | 4 ++++ .../config-lgsm/kfserver/_default.cfg | 4 ++++ .../config-lgsm/l4d2server/_default.cfg | 4 ++++ .../config-lgsm/l4dserver/_default.cfg | 4 ++++ .../config-lgsm/mcserver/_default.cfg | 4 ++++ .../config-lgsm/mhserver/_default.cfg | 4 ++++ .../config-lgsm/mtaserver/_default.cfg | 4 ++++ .../config-lgsm/mumbleserver/_default.cfg | 4 ++++ .../config-lgsm/ndserver/_default.cfg | 4 ++++ .../config-lgsm/nmrihserver/_default.cfg | 4 ++++ .../config-lgsm/ns2cserver/_default.cfg | 4 ++++ .../config-lgsm/ns2server/_default.cfg | 4 ++++ .../config-lgsm/nsserver/_default.cfg | 4 ++++ .../config-lgsm/opforserver/_default.cfg | 4 ++++ .../config-lgsm/pcserver/_default.cfg | 4 ++++ .../config-lgsm/pstbsserver/_default.cfg | 4 ++++ .../config-lgsm/pvkiiserver/_default.cfg | 4 ++++ .../config-lgsm/pzserver/_default.cfg | 4 ++++ .../config-lgsm/q2server/_default.cfg | 4 ++++ .../config-lgsm/q3server/_default.cfg | 4 ++++ .../config-lgsm/qlserver/_default.cfg | 4 ++++ .../config-lgsm/qwserver/_default.cfg | 4 ++++ .../config-lgsm/ricochetserver/_default.cfg | 4 ++++ .../config-lgsm/roserver/_default.cfg | 4 ++++ .../config-lgsm/rtcwserver/_default.cfg | 4 ++++ .../config-lgsm/rustserver/_default.cfg | 4 ++++ .../config-lgsm/rwserver/_default.cfg | 4 ++++ .../config-lgsm/sampserver/_default.cfg | 4 ++++ .../config-lgsm/sbotsserver/_default.cfg | 4 ++++ .../config-lgsm/sbserver/_default.cfg | 4 ++++ .../config-lgsm/sdtdserver/_default.cfg | 4 ++++ .../config-lgsm/sof2server/_default.cfg | 4 ++++ .../config-lgsm/squadserver/_default.cfg | 4 ++++ .../config-lgsm/ss3server/_default.cfg | 4 ++++ .../config-lgsm/stserver/_default.cfg | 4 ++++ .../config-lgsm/svenserver/_default.cfg | 4 ++++ .../config-lgsm/terrariaserver/_default.cfg | 4 ++++ .../config-lgsm/tf2server/_default.cfg | 4 ++++ .../config-lgsm/tfcserver/_default.cfg | 4 ++++ .../config-lgsm/ts3server/_default.cfg | 4 ++++ .../config-lgsm/tuserver/_default.cfg | 4 ++++ .../config-lgsm/twserver/_default.cfg | 4 ++++ .../config-lgsm/untserver/_default.cfg | 4 ++++ .../config-lgsm/ut2k4server/_default.cfg | 4 ++++ .../config-lgsm/ut3server/_default.cfg | 4 ++++ .../config-lgsm/ut99server/_default.cfg | 4 ++++ .../config-lgsm/utserver/_default.cfg | 4 ++++ .../config-lgsm/vsserver/_default.cfg | 4 ++++ .../config-lgsm/wetserver/_default.cfg | 4 ++++ .../config-lgsm/wurmserver/_default.cfg | 4 ++++ .../config-lgsm/zpsserver/_default.cfg | 4 ++++ lgsm/functions/command_backup.sh | 2 +- lgsm/functions/command_debug.sh | 2 +- lgsm/functions/command_dev_debug.sh | 4 ++-- lgsm/functions/command_monitor.sh | 21 ++++++++++++++++++- lgsm/functions/command_start.sh | 5 +++-- lgsm/functions/core_messages.sh | 9 ++++++++ tests/tests_fctrserver.sh | 2 +- tests/tests_jc2server.sh | 2 +- tests/tests_mcserver.sh | 2 +- tests/tests_ts3server.sh | 2 +- 104 files changed, 416 insertions(+), 11 deletions(-) diff --git a/lgsm/config-default/config-lgsm/arkserver/_default.cfg b/lgsm/config-default/config-lgsm/arkserver/_default.cfg index a1fec34a6..728a9f68a 100644 --- a/lgsm/config-default/config-lgsm/arkserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/arkserver/_default.cfg @@ -86,6 +86,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="5" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/arma3server/_default.cfg b/lgsm/config-default/config-lgsm/arma3server/_default.cfg index 4f323f7e4..828bbdd04 100644 --- a/lgsm/config-default/config-lgsm/arma3server/_default.cfg +++ b/lgsm/config-default/config-lgsm/arma3server/_default.cfg @@ -100,6 +100,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="5" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/bb2server/_default.cfg b/lgsm/config-default/config-lgsm/bb2server/_default.cfg index 48b1f164a..80e1244f9 100644 --- a/lgsm/config-default/config-lgsm/bb2server/_default.cfg +++ b/lgsm/config-default/config-lgsm/bb2server/_default.cfg @@ -90,6 +90,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/bbserver/_default.cfg b/lgsm/config-default/config-lgsm/bbserver/_default.cfg index 1910706f2..2a89c8849 100644 --- a/lgsm/config-default/config-lgsm/bbserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/bbserver/_default.cfg @@ -84,6 +84,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/bdserver/_default.cfg b/lgsm/config-default/config-lgsm/bdserver/_default.cfg index 99f546ab6..5e030759c 100644 --- a/lgsm/config-default/config-lgsm/bdserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/bdserver/_default.cfg @@ -84,6 +84,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/bf1942server/_default.cfg b/lgsm/config-default/config-lgsm/bf1942server/_default.cfg index 23c61227f..c1193658f 100644 --- a/lgsm/config-default/config-lgsm/bf1942server/_default.cfg +++ b/lgsm/config-default/config-lgsm/bf1942server/_default.cfg @@ -77,6 +77,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/bmdmserver/_default.cfg b/lgsm/config-default/config-lgsm/bmdmserver/_default.cfg index 1c29b6aa5..f2d27f8b5 100644 --- a/lgsm/config-default/config-lgsm/bmdmserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/bmdmserver/_default.cfg @@ -90,6 +90,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/boserver/_default.cfg b/lgsm/config-default/config-lgsm/boserver/_default.cfg index ae9a0cee8..1793f6bd5 100644 --- a/lgsm/config-default/config-lgsm/boserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/boserver/_default.cfg @@ -83,6 +83,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/bsserver/_default.cfg b/lgsm/config-default/config-lgsm/bsserver/_default.cfg index 93eb491f3..08823a4bc 100644 --- a/lgsm/config-default/config-lgsm/bsserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/bsserver/_default.cfg @@ -94,6 +94,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/bt1944server/_default.cfg b/lgsm/config-default/config-lgsm/bt1944server/_default.cfg index b5164fecf..2176236c5 100644 --- a/lgsm/config-default/config-lgsm/bt1944server/_default.cfg +++ b/lgsm/config-default/config-lgsm/bt1944server/_default.cfg @@ -82,6 +82,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/ccserver/_default.cfg b/lgsm/config-default/config-lgsm/ccserver/_default.cfg index 7d30f03bb..65d36f1b2 100644 --- a/lgsm/config-default/config-lgsm/ccserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/ccserver/_default.cfg @@ -85,6 +85,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/cod2server/_default.cfg b/lgsm/config-default/config-lgsm/cod2server/_default.cfg index 1d114e688..8f4602123 100644 --- a/lgsm/config-default/config-lgsm/cod2server/_default.cfg +++ b/lgsm/config-default/config-lgsm/cod2server/_default.cfg @@ -80,6 +80,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/cod4server/_default.cfg b/lgsm/config-default/config-lgsm/cod4server/_default.cfg index 210450f59..6ef656494 100644 --- a/lgsm/config-default/config-lgsm/cod4server/_default.cfg +++ b/lgsm/config-default/config-lgsm/cod4server/_default.cfg @@ -80,6 +80,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/codserver/_default.cfg b/lgsm/config-default/config-lgsm/codserver/_default.cfg index d548cfb59..7c6cd2e35 100644 --- a/lgsm/config-default/config-lgsm/codserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/codserver/_default.cfg @@ -80,6 +80,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/coduoserver/_default.cfg b/lgsm/config-default/config-lgsm/coduoserver/_default.cfg index 355f9f339..3a61761c5 100644 --- a/lgsm/config-default/config-lgsm/coduoserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/coduoserver/_default.cfg @@ -80,6 +80,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/codwawserver/_default.cfg b/lgsm/config-default/config-lgsm/codwawserver/_default.cfg index 3f0b882bc..1610ab01f 100644 --- a/lgsm/config-default/config-lgsm/codwawserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/codwawserver/_default.cfg @@ -80,6 +80,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/csczserver/_default.cfg b/lgsm/config-default/config-lgsm/csczserver/_default.cfg index b3620a68c..eb85d04ce 100644 --- a/lgsm/config-default/config-lgsm/csczserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/csczserver/_default.cfg @@ -84,6 +84,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/csgoserver/_default.cfg b/lgsm/config-default/config-lgsm/csgoserver/_default.cfg index fa9a79e9d..5dac93530 100644 --- a/lgsm/config-default/config-lgsm/csgoserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/csgoserver/_default.cfg @@ -110,6 +110,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/csserver/_default.cfg b/lgsm/config-default/config-lgsm/csserver/_default.cfg index e088813a3..60390eb68 100644 --- a/lgsm/config-default/config-lgsm/csserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/csserver/_default.cfg @@ -84,6 +84,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/cssserver/_default.cfg b/lgsm/config-default/config-lgsm/cssserver/_default.cfg index dccd9afbb..e07733c32 100644 --- a/lgsm/config-default/config-lgsm/cssserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/cssserver/_default.cfg @@ -90,6 +90,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/dabserver/_default.cfg b/lgsm/config-default/config-lgsm/dabserver/_default.cfg index dc6ad1bde..e65d5cb94 100644 --- a/lgsm/config-default/config-lgsm/dabserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/dabserver/_default.cfg @@ -85,6 +85,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/dmcserver/_default.cfg b/lgsm/config-default/config-lgsm/dmcserver/_default.cfg index fa68dd498..804cb020c 100644 --- a/lgsm/config-default/config-lgsm/dmcserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/dmcserver/_default.cfg @@ -84,6 +84,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/dodserver/_default.cfg b/lgsm/config-default/config-lgsm/dodserver/_default.cfg index 77c07a7f4..e82012e29 100644 --- a/lgsm/config-default/config-lgsm/dodserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/dodserver/_default.cfg @@ -84,6 +84,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/dodsserver/_default.cfg b/lgsm/config-default/config-lgsm/dodsserver/_default.cfg index 8f01c98ea..4ce487dbc 100644 --- a/lgsm/config-default/config-lgsm/dodsserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/dodsserver/_default.cfg @@ -85,6 +85,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/doiserver/_default.cfg b/lgsm/config-default/config-lgsm/doiserver/_default.cfg index da35c0130..1b8f16916 100644 --- a/lgsm/config-default/config-lgsm/doiserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/doiserver/_default.cfg @@ -87,6 +87,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/dstserver/_default.cfg b/lgsm/config-default/config-lgsm/dstserver/_default.cfg index f4af4602b..70bc1e1bc 100644 --- a/lgsm/config-default/config-lgsm/dstserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/dstserver/_default.cfg @@ -88,6 +88,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/dysserver/_default.cfg b/lgsm/config-default/config-lgsm/dysserver/_default.cfg index 48f26076f..554bc1ee6 100644 --- a/lgsm/config-default/config-lgsm/dysserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/dysserver/_default.cfg @@ -90,6 +90,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/ecoserver/_default.cfg b/lgsm/config-default/config-lgsm/ecoserver/_default.cfg index ed261434f..b08ddd850 100644 --- a/lgsm/config-default/config-lgsm/ecoserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/ecoserver/_default.cfg @@ -73,6 +73,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/emserver/_default.cfg b/lgsm/config-default/config-lgsm/emserver/_default.cfg index 500165b64..5b9efc6de 100644 --- a/lgsm/config-default/config-lgsm/emserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/emserver/_default.cfg @@ -90,6 +90,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/etlserver/_default.cfg b/lgsm/config-default/config-lgsm/etlserver/_default.cfg index 22cfde4bb..9033c8fcf 100644 --- a/lgsm/config-default/config-lgsm/etlserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/etlserver/_default.cfg @@ -74,6 +74,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/fctrserver/_default.cfg b/lgsm/config-default/config-lgsm/fctrserver/_default.cfg index ed0968baa..59fdd7b8f 100644 --- a/lgsm/config-default/config-lgsm/fctrserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/fctrserver/_default.cfg @@ -85,6 +85,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/fofserver/_default.cfg b/lgsm/config-default/config-lgsm/fofserver/_default.cfg index 4ae3ecb4c..692bce2bb 100644 --- a/lgsm/config-default/config-lgsm/fofserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/fofserver/_default.cfg @@ -85,6 +85,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/gesserver/_default.cfg b/lgsm/config-default/config-lgsm/gesserver/_default.cfg index 3e049dc8b..4a16eacc2 100644 --- a/lgsm/config-default/config-lgsm/gesserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/gesserver/_default.cfg @@ -85,6 +85,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/gmodserver/_default.cfg b/lgsm/config-default/config-lgsm/gmodserver/_default.cfg index 105694bbb..7090b26aa 100644 --- a/lgsm/config-default/config-lgsm/gmodserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/gmodserver/_default.cfg @@ -101,6 +101,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="5" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/hl2dmserver/_default.cfg b/lgsm/config-default/config-lgsm/hl2dmserver/_default.cfg index d6cc0b37d..15a39af24 100644 --- a/lgsm/config-default/config-lgsm/hl2dmserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/hl2dmserver/_default.cfg @@ -85,6 +85,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/hldmserver/_default.cfg b/lgsm/config-default/config-lgsm/hldmserver/_default.cfg index af8ec0a41..1f57e9880 100644 --- a/lgsm/config-default/config-lgsm/hldmserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/hldmserver/_default.cfg @@ -84,6 +84,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/hldmsserver/_default.cfg b/lgsm/config-default/config-lgsm/hldmsserver/_default.cfg index 1c8b58bbd..c89b5a19c 100644 --- a/lgsm/config-default/config-lgsm/hldmsserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/hldmsserver/_default.cfg @@ -85,6 +85,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/hwserver/_default.cfg b/lgsm/config-default/config-lgsm/hwserver/_default.cfg index 476bb2bd2..d01949784 100644 --- a/lgsm/config-default/config-lgsm/hwserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/hwserver/_default.cfg @@ -96,6 +96,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/insserver/_default.cfg b/lgsm/config-default/config-lgsm/insserver/_default.cfg index a0f1471c2..4e09e078b 100644 --- a/lgsm/config-default/config-lgsm/insserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/insserver/_default.cfg @@ -92,6 +92,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/inssserver/_default.cfg b/lgsm/config-default/config-lgsm/inssserver/_default.cfg index 312f8826d..04ab3128c 100644 --- a/lgsm/config-default/config-lgsm/inssserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/inssserver/_default.cfg @@ -93,6 +93,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/iosserver/_default.cfg b/lgsm/config-default/config-lgsm/iosserver/_default.cfg index fccbc13d9..435b8310e 100644 --- a/lgsm/config-default/config-lgsm/iosserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/iosserver/_default.cfg @@ -85,6 +85,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/jc2server/_default.cfg b/lgsm/config-default/config-lgsm/jc2server/_default.cfg index da1d34189..439adc72e 100644 --- a/lgsm/config-default/config-lgsm/jc2server/_default.cfg +++ b/lgsm/config-default/config-lgsm/jc2server/_default.cfg @@ -77,6 +77,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/jc3server/_default.cfg b/lgsm/config-default/config-lgsm/jc3server/_default.cfg index 6992a1029..a302deee0 100644 --- a/lgsm/config-default/config-lgsm/jc3server/_default.cfg +++ b/lgsm/config-default/config-lgsm/jc3server/_default.cfg @@ -77,6 +77,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/kf2server/_default.cfg b/lgsm/config-default/config-lgsm/kf2server/_default.cfg index 9a8ab3329..8c917fea6 100644 --- a/lgsm/config-default/config-lgsm/kf2server/_default.cfg +++ b/lgsm/config-default/config-lgsm/kf2server/_default.cfg @@ -83,6 +83,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/kfserver/_default.cfg b/lgsm/config-default/config-lgsm/kfserver/_default.cfg index 1f47ec58a..b182c60b5 100644 --- a/lgsm/config-default/config-lgsm/kfserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/kfserver/_default.cfg @@ -89,6 +89,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/l4d2server/_default.cfg b/lgsm/config-default/config-lgsm/l4d2server/_default.cfg index b69a3e734..6b3f09c9d 100644 --- a/lgsm/config-default/config-lgsm/l4d2server/_default.cfg +++ b/lgsm/config-default/config-lgsm/l4d2server/_default.cfg @@ -84,6 +84,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/l4dserver/_default.cfg b/lgsm/config-default/config-lgsm/l4dserver/_default.cfg index 9326ed808..80dfee1e4 100644 --- a/lgsm/config-default/config-lgsm/l4dserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/l4dserver/_default.cfg @@ -84,6 +84,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/mcserver/_default.cfg b/lgsm/config-default/config-lgsm/mcserver/_default.cfg index 6f737fcb2..7b744ff51 100644 --- a/lgsm/config-default/config-lgsm/mcserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/mcserver/_default.cfg @@ -79,6 +79,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/mhserver/_default.cfg b/lgsm/config-default/config-lgsm/mhserver/_default.cfg index 7e35f9c62..30f68f0cd 100644 --- a/lgsm/config-default/config-lgsm/mhserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/mhserver/_default.cfg @@ -82,6 +82,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/mtaserver/_default.cfg b/lgsm/config-default/config-lgsm/mtaserver/_default.cfg index 9fc6a08b0..cbe998b5a 100644 --- a/lgsm/config-default/config-lgsm/mtaserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/mtaserver/_default.cfg @@ -75,6 +75,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/mumbleserver/_default.cfg b/lgsm/config-default/config-lgsm/mumbleserver/_default.cfg index 2ef9f3ee6..0404d5834 100644 --- a/lgsm/config-default/config-lgsm/mumbleserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/mumbleserver/_default.cfg @@ -78,6 +78,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/ndserver/_default.cfg b/lgsm/config-default/config-lgsm/ndserver/_default.cfg index 2c352d49b..ce6932680 100644 --- a/lgsm/config-default/config-lgsm/ndserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/ndserver/_default.cfg @@ -85,6 +85,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/nmrihserver/_default.cfg b/lgsm/config-default/config-lgsm/nmrihserver/_default.cfg index 8b3edcc9e..a59455630 100644 --- a/lgsm/config-default/config-lgsm/nmrihserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/nmrihserver/_default.cfg @@ -90,6 +90,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/ns2cserver/_default.cfg b/lgsm/config-default/config-lgsm/ns2cserver/_default.cfg index 23c70c212..bedb28177 100644 --- a/lgsm/config-default/config-lgsm/ns2cserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/ns2cserver/_default.cfg @@ -92,6 +92,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/ns2server/_default.cfg b/lgsm/config-default/config-lgsm/ns2server/_default.cfg index 98c3bf3d4..3c6c0e34a 100644 --- a/lgsm/config-default/config-lgsm/ns2server/_default.cfg +++ b/lgsm/config-default/config-lgsm/ns2server/_default.cfg @@ -96,6 +96,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/nsserver/_default.cfg b/lgsm/config-default/config-lgsm/nsserver/_default.cfg index e7b40f0c2..0bd6f4e9b 100644 --- a/lgsm/config-default/config-lgsm/nsserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/nsserver/_default.cfg @@ -84,6 +84,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/opforserver/_default.cfg b/lgsm/config-default/config-lgsm/opforserver/_default.cfg index 9d85f0049..278288e74 100644 --- a/lgsm/config-default/config-lgsm/opforserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/opforserver/_default.cfg @@ -84,6 +84,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/pcserver/_default.cfg b/lgsm/config-default/config-lgsm/pcserver/_default.cfg index fdf8db746..b2c26aaad 100644 --- a/lgsm/config-default/config-lgsm/pcserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/pcserver/_default.cfg @@ -77,6 +77,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/pstbsserver/_default.cfg b/lgsm/config-default/config-lgsm/pstbsserver/_default.cfg index ce13b1ab3..9b4f6762c 100644 --- a/lgsm/config-default/config-lgsm/pstbsserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/pstbsserver/_default.cfg @@ -88,6 +88,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/pvkiiserver/_default.cfg b/lgsm/config-default/config-lgsm/pvkiiserver/_default.cfg index 1d70816d2..407324f3b 100644 --- a/lgsm/config-default/config-lgsm/pvkiiserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/pvkiiserver/_default.cfg @@ -85,6 +85,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/pzserver/_default.cfg b/lgsm/config-default/config-lgsm/pzserver/_default.cfg index 8b258cfe9..c5db5f93a 100644 --- a/lgsm/config-default/config-lgsm/pzserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/pzserver/_default.cfg @@ -80,6 +80,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/q2server/_default.cfg b/lgsm/config-default/config-lgsm/q2server/_default.cfg index c2ac3340e..4369281e4 100644 --- a/lgsm/config-default/config-lgsm/q2server/_default.cfg +++ b/lgsm/config-default/config-lgsm/q2server/_default.cfg @@ -79,6 +79,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/q3server/_default.cfg b/lgsm/config-default/config-lgsm/q3server/_default.cfg index 0c205c6b8..2f1bc15f4 100644 --- a/lgsm/config-default/config-lgsm/q3server/_default.cfg +++ b/lgsm/config-default/config-lgsm/q3server/_default.cfg @@ -79,6 +79,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/qlserver/_default.cfg b/lgsm/config-default/config-lgsm/qlserver/_default.cfg index 01bd7950b..0535d7789 100644 --- a/lgsm/config-default/config-lgsm/qlserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/qlserver/_default.cfg @@ -79,6 +79,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/qwserver/_default.cfg b/lgsm/config-default/config-lgsm/qwserver/_default.cfg index b2ccd0af6..f9fd737f4 100644 --- a/lgsm/config-default/config-lgsm/qwserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/qwserver/_default.cfg @@ -78,6 +78,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/ricochetserver/_default.cfg b/lgsm/config-default/config-lgsm/ricochetserver/_default.cfg index 41ccda337..727f1ddc5 100644 --- a/lgsm/config-default/config-lgsm/ricochetserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/ricochetserver/_default.cfg @@ -84,6 +84,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/roserver/_default.cfg b/lgsm/config-default/config-lgsm/roserver/_default.cfg index dd4614682..0ecfaad5d 100644 --- a/lgsm/config-default/config-lgsm/roserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/roserver/_default.cfg @@ -85,6 +85,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/rtcwserver/_default.cfg b/lgsm/config-default/config-lgsm/rtcwserver/_default.cfg index 012a86815..cf1373e64 100644 --- a/lgsm/config-default/config-lgsm/rtcwserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/rtcwserver/_default.cfg @@ -79,6 +79,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/rustserver/_default.cfg b/lgsm/config-default/config-lgsm/rustserver/_default.cfg index a132a7585..7167acd03 100644 --- a/lgsm/config-default/config-lgsm/rustserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/rustserver/_default.cfg @@ -109,6 +109,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/rwserver/_default.cfg b/lgsm/config-default/config-lgsm/rwserver/_default.cfg index 358304664..7f4222b30 100644 --- a/lgsm/config-default/config-lgsm/rwserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/rwserver/_default.cfg @@ -80,6 +80,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/sampserver/_default.cfg b/lgsm/config-default/config-lgsm/sampserver/_default.cfg index ab54a20c1..b76e92538 100644 --- a/lgsm/config-default/config-lgsm/sampserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/sampserver/_default.cfg @@ -78,6 +78,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/sbotsserver/_default.cfg b/lgsm/config-default/config-lgsm/sbotsserver/_default.cfg index 847168d02..c9e6d450a 100644 --- a/lgsm/config-default/config-lgsm/sbotsserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/sbotsserver/_default.cfg @@ -82,6 +82,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/sbserver/_default.cfg b/lgsm/config-default/config-lgsm/sbserver/_default.cfg index bf7928642..3f157a72a 100644 --- a/lgsm/config-default/config-lgsm/sbserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/sbserver/_default.cfg @@ -84,6 +84,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/sdtdserver/_default.cfg b/lgsm/config-default/config-lgsm/sdtdserver/_default.cfg index 59c408431..06d97810f 100644 --- a/lgsm/config-default/config-lgsm/sdtdserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/sdtdserver/_default.cfg @@ -80,6 +80,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/sof2server/_default.cfg b/lgsm/config-default/config-lgsm/sof2server/_default.cfg index 31d5c2306..897be4a3e 100644 --- a/lgsm/config-default/config-lgsm/sof2server/_default.cfg +++ b/lgsm/config-default/config-lgsm/sof2server/_default.cfg @@ -79,6 +79,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/squadserver/_default.cfg b/lgsm/config-default/config-lgsm/squadserver/_default.cfg index d9dd3b171..3c2109527 100644 --- a/lgsm/config-default/config-lgsm/squadserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/squadserver/_default.cfg @@ -82,6 +82,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/ss3server/_default.cfg b/lgsm/config-default/config-lgsm/ss3server/_default.cfg index 496e11ce0..bb6f78a1b 100644 --- a/lgsm/config-default/config-lgsm/ss3server/_default.cfg +++ b/lgsm/config-default/config-lgsm/ss3server/_default.cfg @@ -81,6 +81,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/stserver/_default.cfg b/lgsm/config-default/config-lgsm/stserver/_default.cfg index 9239d1b6c..93a59f2f8 100644 --- a/lgsm/config-default/config-lgsm/stserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/stserver/_default.cfg @@ -87,6 +87,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/svenserver/_default.cfg b/lgsm/config-default/config-lgsm/svenserver/_default.cfg index 7b0b2524d..91912d425 100644 --- a/lgsm/config-default/config-lgsm/svenserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/svenserver/_default.cfg @@ -84,6 +84,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/terrariaserver/_default.cfg b/lgsm/config-default/config-lgsm/terrariaserver/_default.cfg index e064f10c1..3dc5646f4 100644 --- a/lgsm/config-default/config-lgsm/terrariaserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/terrariaserver/_default.cfg @@ -84,6 +84,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/tf2server/_default.cfg b/lgsm/config-default/config-lgsm/tf2server/_default.cfg index 7399cb941..2bcade720 100644 --- a/lgsm/config-default/config-lgsm/tf2server/_default.cfg +++ b/lgsm/config-default/config-lgsm/tf2server/_default.cfg @@ -90,6 +90,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/tfcserver/_default.cfg b/lgsm/config-default/config-lgsm/tfcserver/_default.cfg index adfe3b56d..b34d820b7 100644 --- a/lgsm/config-default/config-lgsm/tfcserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/tfcserver/_default.cfg @@ -84,6 +84,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/ts3server/_default.cfg b/lgsm/config-default/config-lgsm/ts3server/_default.cfg index 6c6b116cd..47da3e4b6 100644 --- a/lgsm/config-default/config-lgsm/ts3server/_default.cfg +++ b/lgsm/config-default/config-lgsm/ts3server/_default.cfg @@ -73,6 +73,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/tuserver/_default.cfg b/lgsm/config-default/config-lgsm/tuserver/_default.cfg index 8397e826d..6207f5c31 100644 --- a/lgsm/config-default/config-lgsm/tuserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/tuserver/_default.cfg @@ -87,6 +87,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/twserver/_default.cfg b/lgsm/config-default/config-lgsm/twserver/_default.cfg index e655aa023..56d505183 100644 --- a/lgsm/config-default/config-lgsm/twserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/twserver/_default.cfg @@ -84,6 +84,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/untserver/_default.cfg b/lgsm/config-default/config-lgsm/untserver/_default.cfg index ef582c298..2913f0ea8 100644 --- a/lgsm/config-default/config-lgsm/untserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/untserver/_default.cfg @@ -88,6 +88,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/ut2k4server/_default.cfg b/lgsm/config-default/config-lgsm/ut2k4server/_default.cfg index 390eb3b47..9f43be864 100644 --- a/lgsm/config-default/config-lgsm/ut2k4server/_default.cfg +++ b/lgsm/config-default/config-lgsm/ut2k4server/_default.cfg @@ -78,6 +78,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/ut3server/_default.cfg b/lgsm/config-default/config-lgsm/ut3server/_default.cfg index 8afab880c..a1c4496bd 100644 --- a/lgsm/config-default/config-lgsm/ut3server/_default.cfg +++ b/lgsm/config-default/config-lgsm/ut3server/_default.cfg @@ -89,6 +89,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/ut99server/_default.cfg b/lgsm/config-default/config-lgsm/ut99server/_default.cfg index ee45795dd..66d0edd41 100644 --- a/lgsm/config-default/config-lgsm/ut99server/_default.cfg +++ b/lgsm/config-default/config-lgsm/ut99server/_default.cfg @@ -78,6 +78,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/utserver/_default.cfg b/lgsm/config-default/config-lgsm/utserver/_default.cfg index 027012b8e..9b29dd204 100644 --- a/lgsm/config-default/config-lgsm/utserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/utserver/_default.cfg @@ -82,6 +82,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/vsserver/_default.cfg b/lgsm/config-default/config-lgsm/vsserver/_default.cfg index b21d1d7b4..31d67e6e6 100644 --- a/lgsm/config-default/config-lgsm/vsserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/vsserver/_default.cfg @@ -84,6 +84,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/wetserver/_default.cfg b/lgsm/config-default/config-lgsm/wetserver/_default.cfg index 2525bc8b3..ae88991cb 100644 --- a/lgsm/config-default/config-lgsm/wetserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/wetserver/_default.cfg @@ -74,6 +74,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/wurmserver/_default.cfg b/lgsm/config-default/config-lgsm/wurmserver/_default.cfg index fb19f13fb..1263771cc 100644 --- a/lgsm/config-default/config-lgsm/wurmserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/wurmserver/_default.cfg @@ -76,6 +76,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/config-default/config-lgsm/zpsserver/_default.cfg b/lgsm/config-default/config-lgsm/zpsserver/_default.cfg index e9aa313fc..e9acd034e 100644 --- a/lgsm/config-default/config-lgsm/zpsserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/zpsserver/_default.cfg @@ -90,6 +90,10 @@ stoponbackup="on" consolelogging="on" logdays="7" +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + #### LinuxGSM Advanced Settings #### # ANSI Colors diff --git a/lgsm/functions/command_backup.sh b/lgsm/functions/command_backup.sh index de5a11aff..1fb43cea2 100644 --- a/lgsm/functions/command_backup.sh +++ b/lgsm/functions/command_backup.sh @@ -91,7 +91,7 @@ fn_backup_dir(){ fn_backup_create_lockfile(){ # Create lockfile. - date > "${tmpdir}/.backup.lock" + date '+%s' > "${tmpdir}/.backup.lock" fn_script_log_info "Lockfile generated" fn_script_log_info "${tmpdir}/.backup.lock" # trap to remove lockfile on quit. diff --git a/lgsm/functions/command_debug.sh b/lgsm/functions/command_debug.sh index af7d6801a..2949dedab 100644 --- a/lgsm/functions/command_debug.sh +++ b/lgsm/functions/command_debug.sh @@ -98,7 +98,7 @@ fn_script_log_info "Starting debug" fn_print_ok_nl "Starting debug" # Create lockfile. -date > "${rootdir}/${lockselfname}" +date '+%s' > "${rootdir}/${lockselfname}" fn_script_log_info "Lockfile generated" fn_script_log_info "${rootdir}/${lockselfname}" # trap to remove lockfile on quit. diff --git a/lgsm/functions/command_dev_debug.sh b/lgsm/functions/command_dev_debug.sh index 7c831681a..5229d068d 100644 --- a/lgsm/functions/command_dev_debug.sh +++ b/lgsm/functions/command_dev_debug.sh @@ -13,8 +13,8 @@ if [ -f "${rootdir}/.dev-debug" ]; then fn_print_ok_nl "Disabled dev-debug" fn_script_log_info "Disabled dev-debug" else - date > "${rootdir}/.dev-debug" + date '+%s' > "${rootdir}/.dev-debug" fn_print_ok_nl "Enabled dev-debug" fn_script_log_info "Enabled dev-debug" fi -core_exit.sh \ No newline at end of file +core_exit.sh diff --git a/lgsm/functions/command_monitor.sh b/lgsm/functions/command_monitor.sh index 9760380de..772be28a9 100644 --- a/lgsm/functions/command_monitor.sh +++ b/lgsm/functions/command_monitor.sh @@ -18,7 +18,14 @@ for queryattempt in {1..5}; do fn_print_dots "Querying port: ${querymethod}: ${ip}:${queryport} : ${totalseconds}/${queryattempt}: " fn_print_querying_eol fn_script_log_info "Querying port: ${querymethod}: ${ip}:${queryport} : ${queryattempt} : QUERYING" - if [ "${querymethod}" == "gamedig" ]; then + if [ "$(cat "${rootdir}/${lockselfname}")" > "$(date "+%s" -d "${querydelay} mins ago")" ]; then + fn_print_ok "Querying port: ${querymethod}: ${ip}:${queryport} : ${totalseconds}/${queryattempt}: " + fn_print_delay_eol + fn_script_log_info "Querying port: ${querymethod}: ${ip}:${queryport} : ${queryattempt} : DELAY" + fn_script_log_info "Query bypassed: ${gameservername} started less than ${querydelay} minute ago" + monitorpass=1 + core_exit.sh + elif [ "${querymethod}" == "gamedig" ]; then query_gamedig.sh elif [ "${querymethod}" == "gsquery" ]; then if [ ! -f "${functionsdir}/query_gsquery.py" ]; then @@ -184,6 +191,17 @@ info_parms.sh fn_monitor_check_lockfile fn_monitor_check_update fn_monitor_check_session + +# Fix if lockfile is not unix time or contains letters +if [[ "$(cat "${rootdir}/${lockselfname}")" =~ [A-Za-z] ]]; then + date '+%s' > "${rootdir}/${lockselfname}" +fi + +# Add a query bypass if missing +if [ -z "${querydelay}" ]; then + querydelay="1" +fi + # Query has to be enabled in Starbound config. if [ "${shortname}" == "sb" ]; then if [ "${queryenabled}" == "true" ]; then @@ -194,4 +212,5 @@ elif [ "${shortname}" == "ts3" ]||[ "${shortname}" == "eco" ]||[ "${shortname}" else fn_monitor_query fi + core_exit.sh diff --git a/lgsm/functions/command_start.sh b/lgsm/functions/command_start.sh index d955aef17..ed7d98498 100644 --- a/lgsm/functions/command_start.sh +++ b/lgsm/functions/command_start.sh @@ -29,7 +29,8 @@ fn_start_teamspeak3(){ mv "${lgsmlog}" "${lgsmlogdate}" fi # Create lockfile. - date > "${rootdir}/${lockselfname}" + + date '+%s' > "${rootdir}/${lockselfname}" # Accept license. if [ ! -f "${executabledir}/.ts3server_license_accepted" ]; then install_eula.sh @@ -83,7 +84,7 @@ fn_start_tmux(){ mv "${consolelog}" "${consolelogdate}" fi - # Create lockfile. + # Create lockfile date > "${rootdir}/${lockselfname}" cd "${executabledir}" tmux new-session -d -x "${sessionwidth}" -y "${sessionheight}" -s "${servicename}" "${executable} ${parms}" 2> "${lgsmlogdir}/.${servicename}-tmux-error.tmp" diff --git a/lgsm/functions/core_messages.sh b/lgsm/functions/core_messages.sh index c909b5479..51b9a4817 100644 --- a/lgsm/functions/core_messages.sh +++ b/lgsm/functions/core_messages.sh @@ -384,6 +384,15 @@ fn_print_checking_eol_nl(){ echo -e "${cyan}CHECKING${default}" } +# DELAY +fn_print_delay_eol(){ + echo -en "${green}DELAY${default}" +} + +fn_print_delay_eol_nl(){ + echo -e "${green}DELAY${default}" +} + # CANCELED fn_print_canceled_eol(){ echo -en "${yellow}CANCELED${default}" diff --git a/tests/tests_fctrserver.sh b/tests/tests_fctrserver.sh index 18b2b66bb..ca4bf150f 100644 --- a/tests/tests_fctrserver.sh +++ b/tests/tests_fctrserver.sh @@ -815,7 +815,7 @@ echo "Command: ./${gameservername} monitor" requiredstatus="OFFLINE" fn_setstatus fn_print_info_nl "creating lockfile." -date > "${rootdir}/${lockselfname}" +date '+%s' > "${rootdir}/${lockselfname}" ( exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" BASH_XTRACEFD="5" diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index d3a348b43..dbcca9b42 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -968,7 +968,7 @@ echo "Command: ./${gameservername} monitor" requiredstatus="OFFLINE" fn_setstatus fn_print_info_nl "creating lockfile." -date > "${rootdir}/${lockselfname}" +date '+%s' > "${rootdir}/${lockselfname}" ( exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" BASH_XTRACEFD="5" diff --git a/tests/tests_mcserver.sh b/tests/tests_mcserver.sh index 05a7e210a..426851163 100644 --- a/tests/tests_mcserver.sh +++ b/tests/tests_mcserver.sh @@ -847,7 +847,7 @@ echo "Command: ./${gameservername} monitor" requiredstatus="OFFLINE" fn_setstatus fn_print_info_nl "creating lockfile." -date > "${rootdir}/${lockselfname}" +date '+%s' > "${rootdir}/${lockselfname}" ( exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" BASH_XTRACEFD="5" diff --git a/tests/tests_ts3server.sh b/tests/tests_ts3server.sh index 9aa929d55..d243ef13e 100644 --- a/tests/tests_ts3server.sh +++ b/tests/tests_ts3server.sh @@ -814,7 +814,7 @@ echo "Command: ./${gameservername} monitor" requiredstatus="OFFLINE" fn_setstatus fn_print_info_nl "creating lockfile." -date > "${rootdir}/${lockselfname}" +date '+%s' > "${rootdir}/${lockselfname}" ( exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" BASH_XTRACEFD="5" From 1fabc013562c1994f68b9b0d2567399798255454 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Mon, 17 Jun 2019 00:40:54 +0100 Subject: [PATCH 16/20] feat(newserver): Barotrauma (#2400) Co-authored-by: Yann Kraetzschmann --- .../config-lgsm/btserver/_default.cfg | 137 ++++++++++++++++++ lgsm/data/serverlist.csv | 1 + lgsm/functions/check_system_requirements.sh | 3 + lgsm/functions/command_monitor.sh | 2 +- lgsm/functions/fix_steamcmd.sh | 10 +- lgsm/functions/info_config.sh | 26 ++++ lgsm/functions/info_messages.sh | 13 ++ lgsm/functions/info_parms.sh | 8 + lgsm/functions/install_config.sh | 7 + lgsm/functions/query_gamedig.sh | 2 +- lgsm/functions/query_gsquery.py | 2 +- 11 files changed, 207 insertions(+), 4 deletions(-) create mode 100644 lgsm/config-default/config-lgsm/btserver/_default.cfg diff --git a/lgsm/config-default/config-lgsm/btserver/_default.cfg b/lgsm/config-default/config-lgsm/btserver/_default.cfg new file mode 100644 index 000000000..614269477 --- /dev/null +++ b/lgsm/config-default/config-lgsm/btserver/_default.cfg @@ -0,0 +1,137 @@ +################################## +######## Default Settings ######## +################################## +# DO NOT EDIT WILL BE OVERWRITTEN! +# Copy settings from here and use them in either +# common.cfg - applies settings to every instance +# [instance].cfg - applies settings to a specific instance + +#### Server Settings #### + +## SteamCMD Login | https://docs.linuxgsm.com/steamcmd#steamcmd-login +steamuser="username" +steampass='password' + +## Server Start Command | https://docs.linuxgsm.com/configuration/start-parameters#additional-parameters +fn_parms(){ +parms="" +} + +#### LinuxGSM Settings #### + +## Notification Alerts +# (on|off) + +# Display IP | https://docs.linuxgsm.com/alerts#display-ip +displayip="" + +# More info | https://docs.linuxgsm.com/alerts#more-info +postalert="off" +postdays="7" +posttarget="https://hastebin.com" + +# Discord Alerts | https://docs.linuxgsm.com/alerts/discord +discordalert="off" +discordwebhook="webhook" + +# Email Alerts | https://docs.linuxgsm.com/alerts/email +emailalert="off" +email="email@example.com" +emailfrom="" + +# IFTTT Alerts | https://docs.linuxgsm.com/alerts/ifttt +iftttalert="off" +ifttttoken="accesstoken" +iftttevent="linuxgsm_alert" + +# Mailgun Email Alerts | https://docs.linuxgsm.com/alerts/mailgun +mailgunalert="off" +mailguntoken="accesstoken" +mailgundomain="example.com" +mailgunemailfrom="alert@example.com" +mailgunemail="email@myemail.com" + +# Pushbullet Alerts | https://docs.linuxgsm.com/alerts/pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" +channeltag="" + +# Pushover Alerts | https://docs.linuxgsm.com/alerts/pushover +pushoveralert="off" +pushovertoken="accesstoken" + +# Telegram Alerts | https://docs.linuxgsm.com/alerts/telegram +# You can add a custom cURL string eg proxy (useful in Russia) or else in "curlcustomstring". +# like a "--socks5 ipaddr:port" for socks5 proxy see more in "curl --help", if you not need +# any custom string in curl - simple ignore this parameter. +telegramalert="off" +telegramtoken="accesstoken" +telegramchatid="" +curlcustomstring="" + +## Updating | https://docs.linuxgsm.com/commands/update +updateonstart="off" + +## Backup | https://docs.linuxgsm.com/commands/backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://docs.linuxgsm.com/features/logging +consolelogging="on" +logdays="7" + +## Monitor | https://docs.linuxgsm.com/commands/monitor +# Query delay time +querydelay="1" + +#### LinuxGSM Advanced Settings #### + +# ANSI Colors +ansi="on" + +# Message Display Time +sleeptime="0.5" + +## SteamCMD Settings +# Server appid +appid="602960" +# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch +branch="" +# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server +steammaster="true" + +## LinuxGSM Server Details +# Do not edit +gamename="Barotrauma" +engine="barotrauma" +glibc="2.17" + +#### Directories #### +# Edit with care + +## Server Specific Directories +systemdir="${serverfiles}" +executabledir="${systemdir}" +executable="./DedicatedServer" +servercfg="serversettings.xml" +servercfgdefault="serversettings.xml" +servercfgdir="${systemdir}" +servercfgfullpath="${servercfgdir}/${servercfg}" + +## Backup Directory +backupdir="${lgsmdir}/backups" + +## Logging Directories +logdir="${rootdir}/log" +gamelogdir="${systemdir}/ServerLogs" +lgsmlogdir="${logdir}/script" +consolelogdir="${logdir}/console" +lgsmlog="${lgsmlogdir}/${servicename}-script.log" +consolelog="${consolelogdir}/${servicename}-console.log" +alertlog="${lgsmlogdir}/${servicename}-alert.log" +postdetailslog="${lgsmlogdir}/${servicename}-postdetails.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" diff --git a/lgsm/data/serverlist.csv b/lgsm/data/serverlist.csv index b9494bede..b230e225b 100644 --- a/lgsm/data/serverlist.csv +++ b/lgsm/data/serverlist.csv @@ -8,6 +8,7 @@ bmdm,bmdmserver,Black Mesa: Deathmatch bs,bsserver,Blade Symphony bb,bbserver,BrainBread bb2,bb2server,BrainBread 2 +bt,btserver,Barotrauma bt1944,bt1944server,Battalion 1944 cod,codserver,Call of Duty cod2,cod2server,Call of Duty 2 diff --git a/lgsm/functions/check_system_requirements.sh b/lgsm/functions/check_system_requirements.sh index bc2317f48..1493f6b85 100644 --- a/lgsm/functions/check_system_requirements.sh +++ b/lgsm/functions/check_system_requirements.sh @@ -15,6 +15,9 @@ info_distro.sh if [ "${shortname}" == "ark" ]; then ramrequirementmb="4000" ramrequirementgb="4" +elif [ "${shortname}" == "bt" ]; then + ramrequirementmb="1000" + ramrequirementgb="1" elif [ "${shortname}" == "mh" ]; then ramrequirementmb="4000" ramrequirementgb="4" diff --git a/lgsm/functions/command_monitor.sh b/lgsm/functions/command_monitor.sh index 772be28a9..49cfffbce 100644 --- a/lgsm/functions/command_monitor.sh +++ b/lgsm/functions/command_monitor.sh @@ -133,7 +133,7 @@ fn_monitor_check_session(){ fn_monitor_query(){ fn_script_log_info "Querying port: query enabled" # Engines that work with query. - local allowed_engines_array=( avalanche2.0 avalanche3.0 goldsource idtech2 idtech3 idtech3_ql ioquake3 iw2.0 iw3.0 lwjgl2 madness quake refractor realvirtuality source spark starbound unity3d unreal unreal2 unreal4 wurm ) + local allowed_engines_array=( avalanche2.0 avalanche3.0 barotrauma goldsource idtech2 idtech3 idtech3_ql ioquake3 iw2.0 iw3.0 lwjgl2 madness quake refractor realvirtuality source spark starbound unity3d unreal unreal2 unreal4 wurm ) for allowed_engine in "${allowed_engines_array[@]}" do if [ "${allowed_engine}" == "${engine}" ]; then diff --git a/lgsm/functions/fix_steamcmd.sh b/lgsm/functions/fix_steamcmd.sh index a3f60e89c..eb1622978 100644 --- a/lgsm/functions/fix_steamcmd.sh +++ b/lgsm/functions/fix_steamcmd.sh @@ -17,7 +17,15 @@ if [ ! -f "${HOME}/.steam/sdk32/steamclient.so" ]; then fn_fix_msg_end fi -if [ "${shortname}" == "ss3" ]; then +if [ "${shortname}" == "bt" ]; then + # Fixes: [S_API FAIL] SteamAPI_Init() failed; SteamAPI_IsSteamRunning() failed. + if [ ! -L "${executabledir}/lib64/steamclient.so" ]; then + fixname="steamclient.so x86_64" + fn_fix_msg_start + cp -s -v "${steamcmddir}/linux64/steamclient.so" "${executabledir}/lib64/steamclient.so" >> "${lgsmlog}" + fn_fix_msg_end + fi +elif [ "${shortname}" == "ss3" ]; then # Fixes: .steam/bin32/libsteam.so: cannot open shared object file: No such file or directory if [ ! -f "${HOME}/.steam/bin32/libsteam.so" ]; then fixname="libsteam.so" diff --git a/lgsm/functions/info_config.sh b/lgsm/functions/info_config.sh index 14d77cf9f..275fb54f2 100644 --- a/lgsm/functions/info_config.sh +++ b/lgsm/functions/info_config.sh @@ -110,6 +110,29 @@ fn_info_config_ballistic_overkill(){ fi } +fn_info_config_barotrauma(){ + if [ ! -f "${servercfgfullpath}" ]; then + servername="${unavailable}" + serverpassword="${unavailable}" + port="${zero}" + queryport="${zero}" + maxplayers="${unavailable}" + else + servername=$(grep -Po 'name="\K.*(?=")' "${servercfgfullpath}") # Assuming GNU grep is used + serverpassword=$(grep -Po 'password="\K.*(?=")' "${servercfgfullpath}") # Assuming GNU grep is used + port=$(grep " port=" "${servercfgfullpath}" | tr -cd '[:digit:]') + queryport=$(grep "queryport=" "${servercfgfullpath}" | tr -cd '[:digit:]') + maxplayers=$(grep "maxplayers=" "${servercfgfullpath}" | tr -cd '[:digit:]') + + # Not set + servername=${servername:-"NOT SET"} + serverpassword=${serverpassword:-"NOT SET"} + port=${port:-"0"} + queryport=${queryport:-"0"} + maxplayers=${maxplayers:-"0"} + fi +} + fn_info_config_battalion1944(){ if [ ! -f "${servercfgfullpath}" ]; then servername="${unavailable}" @@ -1195,6 +1218,9 @@ if [ "${shortname}" == "ark" ]; then # Ballistic Overkill elif [ "${shortname}" == "bo" ]; then fn_info_config_ballistic_overkill +# Barotrauma +elif [ "${shortname}" == "bt" ]; then + fn_info_config_barotrauma # Battalion 1944 elif [ "${shortname}" == "bt1944" ]; then fn_info_config_battalion1944 diff --git a/lgsm/functions/info_messages.sh b/lgsm/functions/info_messages.sh index d8f7abd63..270caaadd 100644 --- a/lgsm/functions/info_messages.sh +++ b/lgsm/functions/info_messages.sh @@ -1205,6 +1205,17 @@ fn_info_message_mordhau(){ } | column -s $'\t' -t } +fn_info_message_barotrauma(){ + echo "netstat -atunp | grep /./DedicatedSer" + echo -e "" + { + echo -e "DESCRIPTION\tDIRECTION\tPORT\tPROTOCOL" + echo -e "> Game\tINBOUND\t${port}\tudp" + echo -e "> Query\tINBOUND\t$((port+1))\tudp" + } | column -s $'\t' -t +} + + fn_info_message_select_engine(){ # Display details depending on game or engine. if [ "${gamename}" == "7 Days To Die" ]; then @@ -1213,6 +1224,8 @@ fn_info_message_select_engine(){ fn_info_message_ark elif [ "${gamename}" == "Ballistic Overkill" ]; then fn_info_message_ballisticoverkill + elif [ "${gamename}" == "Barotrauma" ]; then + fn_info_message_barotrauma elif [ "${gamename}" == "Battalion 1944" ]; then fn_info_message_battalion1944 elif [ "${gamename}" == "Call of Duty" ]; then diff --git a/lgsm/functions/info_parms.sh b/lgsm/functions/info_parms.sh index 7b080036d..f21924c92 100644 --- a/lgsm/functions/info_parms.sh +++ b/lgsm/functions/info_parms.sh @@ -22,6 +22,11 @@ fn_info_parms_ark(){ maxplayers=${maxplayers:-"0"} } +fn_info_parms_barotrauma(){ + port=${port:-"0"} + queryport=${queryport:-"0"} +} + fn_info_parms_realvirtuality(){ port=${port:-"0"} queryport=$((port + 1)) @@ -197,6 +202,9 @@ if [ "${shortname}" == "ark" ]; then # ARMA 3 elif [ "${shortname}" == "arma3" ]; then fn_info_parms_realvirtuality +# Barotrauma +elif [ "${shortname}" == "bt" ]; then + fn_info_parms_barotrauma # Call of Duty elif [ "${shortname}" == "cod" ]||[ "${shortname}" == "coduo" ]||[ "${engine}" == "iw2.0" ]||[ "${engine}" == "iw3.0" ]; then fn_info_parms_cod diff --git a/lgsm/functions/install_config.sh b/lgsm/functions/install_config.sh index b601da7fc..7edad6595 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -173,6 +173,13 @@ elif [ "${gamename}" == "Base Defense" ]; then fn_fetch_default_config fn_default_config_remote fn_set_config_vars +elif [ "${gamename}" == "Barotrauma" ]; then + gamedirname="Barotrauma" + fn_check_cfgdir + array_configs+=( serversettings.xml ) + fn_fetch_default_config + fn_default_config_remote + fn_set_config_vars elif [ "${gamename}" == "Battalion 1944" ]; then gamedirname="Battalion1944" fn_check_cfgdir diff --git a/lgsm/functions/query_gamedig.sh b/lgsm/functions/query_gamedig.sh index 2c6192030..56d55206f 100644 --- a/lgsm/functions/query_gamedig.sh +++ b/lgsm/functions/query_gamedig.sh @@ -14,7 +14,7 @@ if [ "$(command -v gamedig 2>/dev/null)" ]&&[ "$(command -v jq 2>/dev/null)" ]; local engine="unreal4" fi - local engine_query_array=( avalanche3.0 madness quakelive realvirtuality refractor source goldsource spark starbound unity3d unreal4 wurm ) + local engine_query_array=( avalanche3.0 barotrauma madness quakelive realvirtuality refractor source goldsource spark starbound unity3d unreal4 wurm ) for engine_query in "${engine_query_array[@]}" do if [ "${engine_query}" == "${engine}" ]; then diff --git a/lgsm/functions/query_gsquery.py b/lgsm/functions/query_gsquery.py index fe809be15..b02262382 100644 --- a/lgsm/functions/query_gsquery.py +++ b/lgsm/functions/query_gsquery.py @@ -17,7 +17,7 @@ class gsquery: self.server_response_timeout = 5 self.default_buffer_length = 1024 # - sourcequery=[ 'avalanche3.0','madness','quakelive','realvirtuality','refractor','source','goldsource','spark','starbound','unity3d', 'unreal4', 'wurm' ] + sourcequery=[ 'avalanche3.0','barotrauma''madness','quakelive','realvirtuality','refractor','source','goldsource','spark','starbound','unity3d', 'unreal4', 'wurm' ] idtech3query=['idtech3','iw3.0','ioquake3'] idtech2query=['idtech2','quake','iw2.0'] minecraftquery=['minecraft','lwjgl2'] From 98287d9515e2fcc8613c2944657a97dd89925536 Mon Sep 17 00:00:00 2001 From: Diego Jara Date: Mon, 17 Jun 2019 15:48:37 -0500 Subject: [PATCH 17/20] feat(mods): add get5 and SteamWorks mods (#2375) Co-authored-by: Diego Jara --- lgsm/functions/mods_core.sh | 40 +++++++++++++++++++++++++++++++++++++ lgsm/functions/mods_list.sh | 18 ++++++++++++++--- 2 files changed, 55 insertions(+), 3 deletions(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 30e436a53..d2e18d6bf 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -146,6 +146,46 @@ fn_mod_tidy_files_list(){ sed -i "/^addons\/metamod$/d" "${modsdir}/${modcommand}-files.txt" sed -i "/^addons\/metamod\/sourcemod.vdf$/d" "${modsdir}/${modcommand}-files.txt" fi + + # Remove common paths from deletion list (Add your sourcemod mod here) + if [ "${modcommand}" == "gokz" ] || [ "${modcommand}" == "ttt" ] || [ "${modcommand}" == "steamworks" ] || [ "${modcommand}" == "get5" ]; then + sed -i "/^addons\/sourcemod$/d" "${modsdir}/${modcommand}-files.txt" + sed -i "/^addons\/sourcemod\/configs$/d" "${modsdir}/${modcommand}-files.txt" + sed -i "/^addons\/sourcemod\/extensions$/d" "${modsdir}/${modcommand}-files.txt" + sed -i "/^addons\/sourcemod\/logs$/d" "${modsdir}/${modcommand}-files.txt" + sed -i "/^addons\/sourcemod\/plugins$/d" "${modsdir}/${modcommand}-files.txt" + sed -i "/^addons\/sourcemod\/plugins\/disabled$/d" "${modsdir}/${modcommand}-files.txt" + sed -i "/^addons\/sourcemod\/scripting$/d" "${modsdir}/${modcommand}-files.txt" + sed -i "/^addons\/sourcemod\/scripting\/include$/d" "${modsdir}/${modcommand}-files.txt" + sed -i "/^addons\/sourcemod\/translations$/d" "${modsdir}/${modcommand}-files.txt" + # Don't delete directories of translations like 'fr', 'sv', 'de', etc + sed -i "/^addons\/sourcemod\/translations\/[A-Za-z0-9_]*$/d" "${modsdir}/${modcommand}-files.txt" + sed -i "/^cfg\/sourcemod$/d" "${modsdir}/${modcommand}-files.txt" + sed -i "/^maps$/d" "${modsdir}/${modcommand}-files.txt" + sed -i "/^materialss$/d" "${modsdir}/${modcommand}-files.txt" + sed -i "/^materials\/models$/d" "${modsdir}/${modcommand}-files.txt" + sed -i "/^materials\/models\/weapons$/d" "${modsdir}/${modcommand}-files.txt" + sed -i "/^materials\/darkness$/d" "${modsdir}/${modcommand}-files.txt" + sed -i "/^materials\/decals$/d" "${modsdir}/${modcommand}-files.txt" + sed -i "/^materials\/overlays$/d" "${modsdir}/${modcommand}-files.txt" + sed -i "/^models$/d" "${modsdir}/${modcommand}-files.txt" + sed -i "/^models\/weapons$/d" "${modsdir}/${modcommand}-files.txt" + sed -i "/^sound$/d" "${modsdir}/${modcommand}-files.txt" + sed -i "/^sound\/weapons$/d" "${modsdir}/${modcommand}-files.txt" + fi + + # Remove paths of specific mods from deletion list + if [ "${modcommand}" == "gokz" ]; then + sed -i "/^addons\/sourcemod\/scripting\/include\/smjansson.inc$/d" "${modsdir}/${modcommand}-files.txt" + sed -i "/^addons\/sourcemod\/scripting\/include\/GlobalAPI-Core.inc$/d" "${modsdir}/${modcommand}-files.txt" + sed -i "/^addons\/sourcemod\/scripting\/include\/sourcebanspp.inc$/d" "${modsdir}/${modcommand}-files.txt" + sed -i "/^addons\/sourcemod\/scripting\/include\/autoexecconfig.inc$/d" "${modsdir}/${modcommand}-files.txt" + sed -i "/^addons\/sourcemod\/scripting\/include\/colorvariables.inc$/d" "${modsdir}/${modcommand}-files.txt" + sed -i "/^addons\/sourcemod\/scripting\/include\/movementapi.inc$/d" "${modsdir}/${modcommand}-files.txt" + sed -i "/^addons\/sourcemod\/scripting\/include\/movement.inc$/d" "${modsdir}/${modcommand}-files.txt" + sed -i "/^addons\/sourcemod\/scripting\/include\/dhooks.inc$/d" "${modsdir}/${modcommand}-files.txt" + sed -i "/^addons\/sourcemod\/scripting\/include\/updater.inc$/d" "${modsdir}/${modcommand}-files.txt" + fi } ## Information Gathering. diff --git a/lgsm/functions/mods_list.sh b/lgsm/functions/mods_list.sh index eb1e2f8bf..c0d240e41 100644 --- a/lgsm/functions/mods_list.sh +++ b/lgsm/functions/mods_list.sh @@ -26,6 +26,16 @@ sourcemodscrapeurl="https://sm.alliedmods.net/smdrop/${sourcemodmversion}/source sourcemodlatestfile="$(wget "${sourcemodscrapeurl}" -q -O -)" sourcemoddownloadurl="https://www.sourcemod.net/latest.php?os=linux&version=${sourcemodmversion}" sourcemodurl="${sourcemoddownloadurl}" +# Steamworks +steamworksscrapeurl="https://users.alliedmods.net/~kyles/builds/SteamWorks" +steamworkslatestfile="$(curl -sL ${steamworksscrapeurl} | grep -m 1 linux | cut -d '"' -f 4)" +steamworksdownloadurl="${steamworksscrapeurl}/${steamworkslatestfile}" +steamworksurl="${steamworksdownloadurl}" +# CS:GO Mods +get5scrapepath="$(curl -sL https://ci.splewis.net/job/get5/lastSuccessfulBuild/api/xml | grep -oP "\K(.+)(?=)")" +get5latestfile="$(echo "${get5scrapepath}" | xargs -n 1 -I @ sh -c "echo "basename "@""")" +get5downloadurl="https://ci.splewis.net/job/get5/lastSuccessfulBuild/artifact/${get5scrapepath}" +get5url="${get5downloadurl}" # Oxide oxiderustlatestlink="$(curl -sL https://api.github.com/repos/theumod/umod.rust/releases/latest | grep browser_download_url | cut -d '"' -f 4)" oxidehurtworldlatestlink="$(curl -sL https://api.github.com/repos/OxideMod/Oxide.Hurtworld/releases/latest | grep browser_download_url | cut -d '"' -f 4 | grep "Oxide.Hurtworld.zip")" @@ -59,10 +69,12 @@ modseparator="MOD" # Source mods mod_info_metamod=( MOD "metamod" "MetaMod" "${metamodurl}" "${metamodlatestfile}" "0" "LowercaseOff" "${systemdir}" "addons/metamod/metaplugins.ini;" "source;" "GAMES" "NOTGAMES" "https://www.sourcemm.net" "Plugins Framework" ) mod_info_sourcemod=( MOD "sourcemod" "SourceMod" "${sourcemodurl}" "${sourcemodlatestfile}" "0" "LowercaseOff" "${systemdir}" "cfg;addons/sourcemod/configs;" "source;" "GAMES" "NOTGAMES" "http://www.sourcemod.net" "Admin Features (requires MetaMod)" ) +mod_info_steamworks=( MOD "steamworks" "SteamWorks" "${steamworksurl}" "${steamworkslatestfile}" "0" "LowercaseOff" "${systemdir}" "OVERWRITE" "ENGINES" "Counter-Strike: Global Offensive;" "NOTGAMES" "https://github.com/KyleSanderson/SteamWorks" "Exposing SteamWorks functions to SourcePawn" ) # CS:GO Mods -mod_info_gokz=( MOD "gokz" "GOKZ" "https://bitbucket.org/kztimerglobalteam/gokz/downloads/GOKZ-latest.zip" "gokz-latest.zip" "0" "LowercaseOff" "${systemdir}" "cfg;addons/sourcemod/configs;" "ENGINES" "Counter Strike: Global Offensive" "NOTGAMES" "https://bitbucket.org/kztimerglobalteam/gokz/src/master/" "Implements the KZ game mode (requires SourceMod and MetaMod)") -mod_info_ttt=( MOD "ttt" "Trouble in Terrorist Town" "https://csgottt.com/downloads/ttt-latest-dev-${sourcemodmversion}.zip" "ttt-latest.zip" "0" "LowercaseOff" "${systemdir}" "cfg;addons/sourcemod/configs;" "ENGINES" "Counter Strike: Global Offensive" "NOTGAMES" "https://github.com/Bara/TroubleinTerroristTown" "Implements the TTT game mode (requires SourceMod and MetaMod)") +mod_info_gokz=( MOD "gokz" "GOKZ" "https://bitbucket.org/kztimerglobalteam/gokz/downloads/GOKZ-latest.zip" "gokz-latest.zip" "0" "LowercaseOff" "${systemdir}" "cfg;addons/sourcemod/configs;" "ENGINES" "Counter-Strike: Global Offensive;" "NOTGAMES" "https://bitbucket.org/kztimerglobalteam/gokz/src/master/" "Implements the KZ game mode (requires SourceMod and MetaMod)" ) +mod_info_ttt=( MOD "ttt" "Trouble in Terrorist Town" "https://csgottt.com/downloads/ttt-latest-dev-${sourcemodmversion}.zip" "ttt-latest.zip" "0" "LowercaseOff" "${systemdir}" "cfg;addons/sourcemod/configs;" "ENGINES" "Counter-Strike: Global Offensive;" "NOTGAMES" "https://github.com/Bara/TroubleinTerroristTown" "Implements the TTT game mode (requires SourceMod and MetaMod)" ) +mod_info_get5=( MOD "get5" "Get 5" "${get5url}" "${get5latestfile}" "0" "LowercaseOff" "${systemdir}" "cfg;addons/sourcemod/configs;" "ENGINES" "Counter-Strike: Global Offensive;" "NOTGAMES" "https://github.com/splewis/get5" "Plugin for competitive matches/scrims (requires SourceMod and MetaMod)" ) # Garry's Mod Addons mod_info_ulib=( MOD "ulib" "ULib" "https://codeload.github.com/TeamUlysses/ulib/zip/master" "ulib-master.zip" "0" "LowercaseOff" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://ulyssesmod.net" "Complete Framework" ) @@ -85,4 +97,4 @@ mod_info_hwoxide=( MOD "hwoxide" "Oxide for Hurtworld" "${oxidehurtworldlatestli mod_info_sdtdoxide=( MOD "sdtdoxide" "Oxide for 7 Days To Die" "${oxidesdtdlatestlink}" "Oxide.SevenDaysToDie.zip" "0" "LowercaseOff" "${systemdir}" "OVERWRITE" "ENGINES" "7 Days To Die;" "NOTGAMES" "http://oxidemod.org/downloads/oxide-for-7-days-to-die.813/" "Allows for the use of plugins" ) # REQUIRED: Set all mods info into the global array -mods_global_array=( "${mod_info_metamod[@]}" "${mod_info_sourcemod[@]}" "${mod_info_gokz[@]}" "${mod_info_ttt[@]}" "${mod_info_ulib[@]}" "${mod_info_ulx[@]}" "${mod_info_utime[@]}" "${mod_info_uclip[@]}" "${mod_info_acf[@]}" "${mod_info_acf_missiles[@]}" "${mod_info_acf_sweps[@]}" "${mod_info_advdupe2[@]}" "${mod_info_pac3[@]}" "${mod_info_wiremod[@]}" "${mod_info_wiremodextras[@]}" "${mod_info_darkrp[@]}" "${mod_info_darkrpmodification[@]}" "${mod_info_rustoxide[@]}" "${mod_info_hwoxide[@]}" "${mod_info_sdtdoxide[@]}" ) +mods_global_array=( "${mod_info_metamod[@]}" "${mod_info_sourcemod[@]}" "${mod_info_steamworks[@]}" "${mod_info_gokz[@]}" "${mod_info_ttt[@]}" "${mod_info_get5[@]}" "${mod_info_ulib[@]}" "${mod_info_ulx[@]}" "${mod_info_utime[@]}" "${mod_info_uclip[@]}" "${mod_info_acf[@]}" "${mod_info_acf_missiles[@]}" "${mod_info_acf_sweps[@]}" "${mod_info_advdupe2[@]}" "${mod_info_pac3[@]}" "${mod_info_wiremod[@]}" "${mod_info_wiremodextras[@]}" "${mod_info_darkrp[@]}" "${mod_info_darkrpmodification[@]}" "${mod_info_rustoxide[@]}" "${mod_info_hwoxide[@]}" "${mod_info_sdtdoxide[@]}" ) From 16bbb21736eff2caaaa48875670382e0998fa4ec Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Mon, 17 Jun 2019 22:07:21 +0100 Subject: [PATCH 18/20] correct if for query delay --- lgsm/functions/command_monitor.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_monitor.sh b/lgsm/functions/command_monitor.sh index 49cfffbce..06786cadd 100644 --- a/lgsm/functions/command_monitor.sh +++ b/lgsm/functions/command_monitor.sh @@ -18,7 +18,7 @@ for queryattempt in {1..5}; do fn_print_dots "Querying port: ${querymethod}: ${ip}:${queryport} : ${totalseconds}/${queryattempt}: " fn_print_querying_eol fn_script_log_info "Querying port: ${querymethod}: ${ip}:${queryport} : ${queryattempt} : QUERYING" - if [ "$(cat "${rootdir}/${lockselfname}")" > "$(date "+%s" -d "${querydelay} mins ago")" ]; then + if [ "$(cat "${rootdir}/${lockselfname}")" -lt "$(date "+%s" -d "${querydelay} mins ago")" ]; then fn_print_ok "Querying port: ${querymethod}: ${ip}:${queryport} : ${totalseconds}/${queryattempt}: " fn_print_delay_eol fn_script_log_info "Querying port: ${querymethod}: ${ip}:${queryport} : ${queryattempt} : DELAY" From e3a94dccf6670a8acb820a3920f710a3788dfa92 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Mon, 17 Jun 2019 22:18:10 +0100 Subject: [PATCH 19/20] correct comment --- lgsm/functions/check_permissions.sh | 2 +- lgsm/functions/command_start.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/check_permissions.sh b/lgsm/functions/check_permissions.sh index 77dfd1b5b..7108b16c1 100644 --- a/lgsm/functions/check_permissions.sh +++ b/lgsm/functions/check_permissions.sh @@ -149,7 +149,7 @@ fn_sys_perm_errors_detect(){ sysdirpermerror="0" classdirpermerror="0" netdirpermerror="0" - # Check permissions/ + # Check permissions. # /sys, /sys/class and /sys/class/net should be readable & executable. if [ ! -r "/sys" ]||[ ! -x "/sys" ]; then sysdirpermerror="1" diff --git a/lgsm/functions/command_start.sh b/lgsm/functions/command_start.sh index ed7d98498..afaa82326 100644 --- a/lgsm/functions/command_start.sh +++ b/lgsm/functions/command_start.sh @@ -28,8 +28,8 @@ fn_start_teamspeak3(){ if [ -f "${lgsmlog}" ]; then mv "${lgsmlog}" "${lgsmlogdate}" fi - # Create lockfile. + # Create lockfile. date '+%s' > "${rootdir}/${lockselfname}" # Accept license. if [ ! -f "${executabledir}/.ts3server_license_accepted" ]; then From cd7a62746e76d902e40f15bf5f1176638312bcb0 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Tue, 18 Jun 2019 22:16:45 +0100 Subject: [PATCH 20/20] release v19.7.0 --- linuxgsm.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linuxgsm.sh b/linuxgsm.sh index c549ef46a..aba85f1b0 100755 --- a/linuxgsm.sh +++ b/linuxgsm.sh @@ -20,7 +20,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="v19.6.0" +version="v19.7.0" shortname="core" gameservername="core" rootdir="$(dirname "$(readlink -f "${BASH_SOURCE[0]}")")"