From c043eef6efb0d0d367fcf92b0a7a82077973614e Mon Sep 17 00:00:00 2001 From: Alexander Hurd Date: Sun, 19 Feb 2017 20:27:47 -0500 Subject: [PATCH 001/108] adding Base Defense --- BaseDefense/bdefserver | 199 +++++++++++++++++++++++++ lgsm/functions/install_config.sh | 6 + lgsm/functions/install_server_files.sh | 6 +- 3 files changed, 209 insertions(+), 2 deletions(-) create mode 100644 BaseDefense/bdefserver diff --git a/BaseDefense/bdefserver b/BaseDefense/bdefserver new file mode 100644 index 000000000..41e27812b --- /dev/null +++ b/BaseDefense/bdefserver @@ -0,0 +1,199 @@ +#!/bin/bash +# Project: Game Server Managers - LinuxGSM +# Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2017 Daniel Gibbs +# Purpose: Base Defense | Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki +# Website: https://gameservermanagers.com + +# Debugging +if [ -f ".dev-debug" ]; then + exec 5>dev-debug.log + BASH_XTRACEFD="5" + set -x +fi + +version="170219" + +########################## +######## Settings ######## +########################## + +#### Server Settings #### + +## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters +defaultmap="pve_tomb" +maxplayers="16" +port="27015" +clientport="27005" +ip="0.0.0.0" + +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +fn_parms(){ +parms="-game bdef -strictportbind +ip ${ip} -port ${port} +clientport ${clientport} +map ${defaultmap} +servercfgfile ${servercfg} -maxplayers ${maxplayers}" +} + +#### LinuxGSM Settings #### + +## Notification Alerts +# (on|off) +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" + +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" +channeltag="" + +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" + +#### LinuxGSM Advanced Settings #### + +## 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" +branch="" + +## Github Branch Select +# Allows for the use of different function files +# from a different repo and/or branch. +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="master" + +## LinuxGSM Server Details +# Do not edit +gamename="Base Defense" +engine="goldsource" + +## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers +servicename="bdef-server" + +#### Directories #### +# Edit with care + +## Work Directories +rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" +selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" +lockselfname=".${servicename}.lock" +lgsmdir="${rootdir}/lgsm" +functionsdir="${lgsmdir}/functions" +libdir="${lgsmdir}/lib" +tmpdir="${lgsmdir}/tmp" +filesdir="${rootdir}/serverfiles" + +## Server Specific Directories +systemdir="${filesdir}/bdfe" +executabledir="${filesdir}" +executable="./hlds_run" +servercfg="${servicename}.cfg" +servercfgdefault="server.cfg" +servercfgdir="${systemdir}" +servercfgfullpath="${servercfgdir}/${servercfg}" + +## Backup Directory +backupdir="${rootdir}/backups" + +## Logging Directories +gamelogdir="${systemdir}/logs" +scriptlogdir="${rootdir}/log/script" +consolelogdir="${rootdir}/log/console" +scriptlog="${scriptlogdir}/${servicename}-script.log" +consolelog="${consolelogdir}/${servicename}-console.log" +emaillog="${scriptlogdir}/${servicename}-email.log" + +## Logs Naming +scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" +consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" + +######################## +######## Script ######## +###### Do not edit ##### +######################## + +# Fetches core_dl for file downloads +fn_fetch_core_dl(){ +github_file_url_dir="lgsm/functions" +github_file_url_name="${functionfile}" +filedir="${functionsdir}" +filename="${github_file_url_name}" +githuburl="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/${github_file_url_dir}/${github_file_url_name}" +# If the file is missing, then download +if [ ! -f "${filedir}/${filename}" ]; then + if [ ! -d "${filedir}" ]; then + mkdir -p "${filedir}" + fi + echo -e " fetching ${filename}...\c" + # Check curl exists and use available path + curlpaths="$(command -v curl 2>/dev/null) $(which curl >/dev/null 2>&1) /usr/bin/curl /bin/curl /usr/sbin/curl /sbin/curl)" + for curlcmd in ${curlpaths} + do + if [ -x "${curlcmd}" ]; then + break + fi + done + # If curl exists download file + if [ "$(basename ${curlcmd})" == "curl" ]; then + curlfetch=$(${curlcmd} -s --fail -o "${filedir}/${filename}" "${githuburl}" 2>&1) + if [ $? -ne 0 ]; then + echo -e "\e[0;31mFAIL\e[0m\n" + echo "${curlfetch}" + echo -e "${githuburl}\n" + exit 1 + else + echo -e "\e[0;32mOK\e[0m" + fi + else + echo -e "\e[0;31mFAIL\e[0m\n" + echo "Curl is not installed!" + echo -e "" + exit 1 + fi + chmod +x "${filedir}/${filename}" +fi +source "${filedir}/${filename}" +} + +core_dl.sh(){ +# Functions are defined in core_functions.sh. +functionfile="${FUNCNAME}" +fn_fetch_core_dl +} + +core_functions.sh(){ +# Functions are defined in core_functions.sh. +functionfile="${FUNCNAME}" +fn_fetch_core_dl +} + +# Prevent from running this script as root. +if [ "$(whoami)" = "root" ]; then + if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then + echo "[ FAIL ] Do NOT run this script as root!" + exit 1 + else + core_functions.sh + check_root.sh + fi +fi + +core_dl.sh +core_functions.sh +getopt=$1 +core_getopt.sh \ No newline at end of file diff --git a/lgsm/functions/install_config.sh b/lgsm/functions/install_config.sh index 529f87038..05deba445 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -150,6 +150,12 @@ elif [ "${gamename}" == "Ballistic Overkill" ]; then fn_fetch_default_config fn_default_config_remote fn_set_config_vars +elif [ "${gamename}" == "Base Defense" ]; then + gamedirname="BaseDefense" + array_configs+=( server.cfg ) + fn_fetch_default_config + fn_default_config_remote + fn_set_config_vars elif [ "${gamename}" == "Battlefield: 1942" ]; then gamedirname="Battlefield1942" array_configs+=( serversettings.con ) diff --git a/lgsm/functions/install_server_files.sh b/lgsm/functions/install_server_files.sh index edee16e9f..360ffa1b2 100644 --- a/lgsm/functions/install_server_files.sh +++ b/lgsm/functions/install_server_files.sh @@ -9,7 +9,9 @@ local commandaction="Install" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" fn_install_server_files(){ - if [ "${gamename}" == "Battlefield: 1942" ]; then + if [ "${gamename}" == "Base Defense" ]; then + fileurl="https://s3.amazonaws.com/linuxgsm/base_defense_1775.tar.gz"; filedir="${tmpdir}"; filename="base_defense_1775.tar.gz"; executecmd="noexecute" run="norun"; force="noforce"; md5="a272b65ab014d9e9a103fad26ce11ea5" + elif [ "${gamename}" == "Battlefield: 1942" ]; then fileurl="http://files.gameservermanagers.com/BattleField1942/bf1942_lnxded-1.61-hacked-to-1.612.full.tar.bz2"; filedir="${tmpdir}"; filename="bf1942_lnxded-1.61-hacked-to-1.612.full.tar.bz2"; executecmd="noexecute" run="norun"; force="noforce"; md5="a86a5d3cd64ca59abcc9bb9f777c2e5d" elif [ "${gamename}" == "Call of Duty" ]; then fileurl="http://files.gameservermanagers.com/CallOfDuty/cod-lnxded-1.5b-full.tar.bz2"; filedir="${tmpdir}"; filename="cod-lnxded-1.5-large.tar.bz2"; executecmd="noexecute" run="norun"; force="noforce"; md5="19629895a4cf6fd8f6d1ee198b5304cd" @@ -134,7 +136,7 @@ elif [ "${gamename}" == "Multi Theft Auto" ]; then elif [ "${gamename}" == "Factorio" ]; then update_factorio.sh install_factorio_save.sh -elif [ -z "${appid}" ]||[ "${gamename}" == "GoldenEye: Source" ]; then +elif [ -z "${appid}" ]||[ "${gamename}" == "GoldenEye: Source" ]||[ "${gamename}" == "Base Defense" ]; then if [ "${gamename}" == "Unreal Tournament" ]; then install_unreal_tournament_eula.sh fi From 5a9fb8c865e7da2329b91feed36a0230fe4bf521 Mon Sep 17 00:00:00 2001 From: Alexander Hurd Date: Sun, 19 Feb 2017 20:51:28 -0500 Subject: [PATCH 002/108] fix --- BaseDefense/bdefserver | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BaseDefense/bdefserver b/BaseDefense/bdefserver index 41e27812b..5b7916419 100644 --- a/BaseDefense/bdefserver +++ b/BaseDefense/bdefserver @@ -99,7 +99,7 @@ tmpdir="${lgsmdir}/tmp" filesdir="${rootdir}/serverfiles" ## Server Specific Directories -systemdir="${filesdir}/bdfe" +systemdir="${filesdir}/bdef" executabledir="${filesdir}" executable="./hlds_run" servercfg="${servicename}.cfg" From 0b3a3d72595552306745da17d8fe3dc376b79246 Mon Sep 17 00:00:00 2001 From: Alexander Hurd Date: Sun, 19 Feb 2017 21:00:30 -0500 Subject: [PATCH 003/108] fix --- BaseDefense/bdefserver | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BaseDefense/bdefserver b/BaseDefense/bdefserver index 5b7916419..444bf0013 100644 --- a/BaseDefense/bdefserver +++ b/BaseDefense/bdefserver @@ -83,7 +83,7 @@ gamename="Base Defense" engine="goldsource" ## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers -servicename="bdef-server" +servicename="bdef_server" #### Directories #### # Edit with care From 82336e65acf7dae5ab815a3f88197b7961d1bace Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Wed, 14 Mar 2018 00:59:37 +0100 Subject: [PATCH 004/108] Added PAC3 mod for Garry's Mod Fixes #1828 --- lgsm/functions/mods_list.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/lgsm/functions/mods_list.sh b/lgsm/functions/mods_list.sh index 5852117eb..661b19713 100644 --- a/lgsm/functions/mods_list.sh +++ b/lgsm/functions/mods_list.sh @@ -69,6 +69,7 @@ mod_info_acf_missiles=( MOD "acfmissiles" "ACF Missiles" "https://github.com/Bub mod_info_advdupe2=( MOD "advdupe2" "Advanced Duplicator 2" "https://github.com/wiremod/advdupe2/archive/master.zip" "advdupe2-master.zip" "0" "LowercaseOn" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://www.wiremod.com" "Save your constructions" ) mod_info_darkrp=( MOD "darkrp" "DarkRP" "https://github.com/FPtje/DarkRP/archive/master.zip" "darkrp-master.zip" "0" "LowercaseOn" "${systemdir}/gamemodes" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://darkrp.com" "Most popular gamemode" ) mod_info_darkrpmodification=( MOD "darkrpmodification" "DarkRP Modification" "https://github.com/FPtje/darkrpmodification/archive/master.zip" "darkrpmodification-master.zip" "0" "LowercaseOff" "${systemdir}/addons" "NOUPDATE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://darkrp.com" "Customize DarkRP settings" ) +mod_info_pac=( MOD "pac3" "PAC3" "https://github.com/CapsAdmin/pac3/archive/master.zip" "pac3-master.zip" "0" "LowercaseOff" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "https://github.com/CapsAdmin/pac3" "Advanced player model customization" ) # Oxidemod mod_info_rustoxide=( MOD "rustoxide" "Oxide for Rust" "${oxiderustlatestlink}" "Oxide.Rust.zip" "0" "LowercaseOff" "${systemdir}" "OVERWRITE" "ENGINES" "Rust;" "NOTGAMES" "http://oxidemod.org/downloads/oxide-for-rust.1659/" "Allows for the use of plugins" ) mod_info_hwoxide=( MOD "hwoxide" "Oxide for Hurtworld" "${oxidehurtworldlatestlink}" "Oxide.Hurtworld.zip" "0" "LowercaseOff" "${systemdir}" "OVERWRITE" "ENGINES" "Hurtworld;" "NOTGAMES" "http://oxidemod.org/downloads/oxide-for-hurtworld.1332/" "Allows for the use of plugins" ) From e546c893f3299c48363f30d4816f9871f4c8b5ed Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 14 Mar 2018 12:38:14 +0000 Subject: [PATCH 005/108] code tidy --- lgsm/functions/command_fastdl.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lgsm/functions/command_fastdl.sh b/lgsm/functions/command_fastdl.sh index 05eea597b..cfa2fd496 100644 --- a/lgsm/functions/command_fastdl.sh +++ b/lgsm/functions/command_fastdl.sh @@ -69,7 +69,7 @@ fn_clear_old_fastdl(){ echo -en "clearing existing FastDL directory ${fastdldir}..." rm -R "${fastdldir:?}" exitcode=$? - if [ "${exitcode}" -ne 0 ]; then + if [ ${exitcode} -ne 0 ]; then fn_print_fail_eol_nl fn_script_log_fatal "Clearing existing FastDL directory ${fastdldir}" core_exit.sh @@ -337,7 +337,7 @@ fn_fastdl_source(){ fi cp "${fastdlfile}" "${fastdldir}/${directory}" exitcode=$? - if [ "${exitcode}" -ne 0 ]; then + if [ ${exitcode} -ne 0 ]; then fn_print_fail_eol_nl fn_script_log_fatal "Copying ${fastdlfile} > ${fastdldir}/${directory}" core_exit.sh @@ -373,7 +373,7 @@ fn_fastdl_gmod_dl_enforcer(){ echo -en "removing existing download enforcer: ${luafastdlfile}..." rm "${luafastdlfullpath:?}" exitcode=$? - if [ "${exitcode}" -ne 0 ]; then + if [ ${exitcode} -ne 0 ]; then fn_print_fail_eol_nl fn_script_log_fatal "Removing existing download enforcer ${luafastdlfullpath}" core_exit.sh @@ -391,7 +391,7 @@ fn_fastdl_gmod_dl_enforcer(){ echo "resource.AddFile( \"${line}\" )" >> "${luafastdlfullpath}" done < <(find "${fastdldir:?}" \( -type f ! -name "*.bz2" \) -printf '%P\n') exitcode=$? - if [ "${exitcode}" -ne 0 ]; then + if [ ${exitcode} -ne 0 ]; then fn_print_fail_eol_nl fn_script_log_fatal "Creating new download enforcer ${luafastdlfullpath}" core_exit.sh @@ -408,7 +408,7 @@ fn_fastdl_bzip2(){ echo -en "\r\033[Kcompressing ${filetocompress}..." bzip2 -f "${filetocompress}" exitcode=$? - if [ "${exitcode}" -ne 0 ]; then + if [ ${exitcode} -ne 0 ]; then fn_print_fail_eol_nl fn_script_log_fatal "Compressing ${filetocompress}" core_exit.sh From 4e152b29022e88497e1c0520660a741e2756838c Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 14 Mar 2018 12:45:07 +0000 Subject: [PATCH 006/108] Fixes issue #1842 core_dl not exiting when download fails --- lgsm/functions/core_dl.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/core_dl.sh b/lgsm/functions/core_dl.sh index f02c32a67..d279ab85b 100644 --- a/lgsm/functions/core_dl.sh +++ b/lgsm/functions/core_dl.sh @@ -116,8 +116,8 @@ fn_fetch_file(){ if [ "${local_filename##*.}" == "bz2" ]||[ "${local_filename##*.}" == "gz" ]||[ "${local_filename##*.}" == "zip" ]||[ "${local_filename##*.}" == "jar" ]; then echo -ne "downloading ${local_filename}..." sleep 0.5 - curlcmd=$(${curlpath} --progress-bar --fail -L -o "${local_filedir}/${local_filename}" "${remote_fileurl}") echo -ne "downloading ${local_filename}..." + curlcmd=$(${curlpath} --progress-bar --fail -L -o "${local_filedir}/${local_filename}" "${remote_fileurl}") else echo -ne " fetching ${local_filename}...\c" curlcmd=$(${curlpath} -s --fail -L -o "${local_filedir}/${local_filename}" "${remote_fileurl}" 2>&1) From ee47df828f4b4017ef581fa32310e6787219d674 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 14 Mar 2018 14:03:55 +0000 Subject: [PATCH 007/108] Updating base defense --- BaseDefense/bdefserver | 199 ------------------ .../config-lgsm/bdserver/_default.cfg | 118 +++++++++++ lgsm/data/serverlist.csv | 1 + 3 files changed, 119 insertions(+), 199 deletions(-) delete mode 100644 BaseDefense/bdefserver create mode 100644 lgsm/config-default/config-lgsm/bdserver/_default.cfg diff --git a/BaseDefense/bdefserver b/BaseDefense/bdefserver deleted file mode 100644 index 444bf0013..000000000 --- a/BaseDefense/bdefserver +++ /dev/null @@ -1,199 +0,0 @@ -#!/bin/bash -# Project: Game Server Managers - LinuxGSM -# Author: Daniel Gibbs -# License: MIT License, Copyright (c) 2017 Daniel Gibbs -# Purpose: Base Defense | Server Management Script -# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors -# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki -# Website: https://gameservermanagers.com - -# Debugging -if [ -f ".dev-debug" ]; then - exec 5>dev-debug.log - BASH_XTRACEFD="5" - set -x -fi - -version="170219" - -########################## -######## Settings ######## -########################## - -#### Server Settings #### - -## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters -defaultmap="pve_tomb" -maxplayers="16" -port="27015" -clientport="27005" -ip="0.0.0.0" - -## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters -fn_parms(){ -parms="-game bdef -strictportbind +ip ${ip} -port ${port} +clientport ${clientport} +map ${defaultmap} +servercfgfile ${servercfg} -maxplayers ${maxplayers}" -} - -#### LinuxGSM Settings #### - -## Notification Alerts -# (on|off) -# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email -emailalert="off" -email="email@example.com" -emailfrom="" - -# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet -pushbulletalert="off" -pushbullettoken="accesstoken" -channeltag="" - -## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update -updateonstart="off" - -## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup -maxbackups="4" -maxbackupdays="30" -stoponbackup="on" - -## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging -consolelogging="on" -logdays="7" - -#### LinuxGSM Advanced Settings #### - -## 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" -branch="" - -## Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="master" - -## LinuxGSM Server Details -# Do not edit -gamename="Base Defense" -engine="goldsource" - -## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers -servicename="bdef_server" - -#### Directories #### -# Edit with care - -## Work Directories -rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" -selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" -lockselfname=".${servicename}.lock" -lgsmdir="${rootdir}/lgsm" -functionsdir="${lgsmdir}/functions" -libdir="${lgsmdir}/lib" -tmpdir="${lgsmdir}/tmp" -filesdir="${rootdir}/serverfiles" - -## Server Specific Directories -systemdir="${filesdir}/bdef" -executabledir="${filesdir}" -executable="./hlds_run" -servercfg="${servicename}.cfg" -servercfgdefault="server.cfg" -servercfgdir="${systemdir}" -servercfgfullpath="${servercfgdir}/${servercfg}" - -## Backup Directory -backupdir="${rootdir}/backups" - -## Logging Directories -gamelogdir="${systemdir}/logs" -scriptlogdir="${rootdir}/log/script" -consolelogdir="${rootdir}/log/console" -scriptlog="${scriptlogdir}/${servicename}-script.log" -consolelog="${consolelogdir}/${servicename}-console.log" -emaillog="${scriptlogdir}/${servicename}-email.log" - -## Logs Naming -scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" -consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" - -######################## -######## Script ######## -###### Do not edit ##### -######################## - -# Fetches core_dl for file downloads -fn_fetch_core_dl(){ -github_file_url_dir="lgsm/functions" -github_file_url_name="${functionfile}" -filedir="${functionsdir}" -filename="${github_file_url_name}" -githuburl="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/${github_file_url_dir}/${github_file_url_name}" -# If the file is missing, then download -if [ ! -f "${filedir}/${filename}" ]; then - if [ ! -d "${filedir}" ]; then - mkdir -p "${filedir}" - fi - echo -e " fetching ${filename}...\c" - # Check curl exists and use available path - curlpaths="$(command -v curl 2>/dev/null) $(which curl >/dev/null 2>&1) /usr/bin/curl /bin/curl /usr/sbin/curl /sbin/curl)" - for curlcmd in ${curlpaths} - do - if [ -x "${curlcmd}" ]; then - break - fi - done - # If curl exists download file - if [ "$(basename ${curlcmd})" == "curl" ]; then - curlfetch=$(${curlcmd} -s --fail -o "${filedir}/${filename}" "${githuburl}" 2>&1) - if [ $? -ne 0 ]; then - echo -e "\e[0;31mFAIL\e[0m\n" - echo "${curlfetch}" - echo -e "${githuburl}\n" - exit 1 - else - echo -e "\e[0;32mOK\e[0m" - fi - else - echo -e "\e[0;31mFAIL\e[0m\n" - echo "Curl is not installed!" - echo -e "" - exit 1 - fi - chmod +x "${filedir}/${filename}" -fi -source "${filedir}/${filename}" -} - -core_dl.sh(){ -# Functions are defined in core_functions.sh. -functionfile="${FUNCNAME}" -fn_fetch_core_dl -} - -core_functions.sh(){ -# Functions are defined in core_functions.sh. -functionfile="${FUNCNAME}" -fn_fetch_core_dl -} - -# Prevent from running this script as root. -if [ "$(whoami)" = "root" ]; then - if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then - echo "[ FAIL ] Do NOT run this script as root!" - exit 1 - else - core_functions.sh - check_root.sh - fi -fi - -core_dl.sh -core_functions.sh -getopt=$1 -core_getopt.sh \ No newline at end of file diff --git a/lgsm/config-default/config-lgsm/bdserver/_default.cfg b/lgsm/config-default/config-lgsm/bdserver/_default.cfg new file mode 100644 index 000000000..22a2a3425 --- /dev/null +++ b/lgsm/config-default/config-lgsm/bdserver/_default.cfg @@ -0,0 +1,118 @@ +################################## +######## 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://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters +ip="0.0.0.0" +port="27015" +clientport="27005" +defaultmap="pve_tomb" +maxplayers="16 + +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +fn_parms(){ +parms="-game bdef -strictportbind +ip ${ip} -port ${port} +clientport ${clientport} +map ${defaultmap} +servercfgfile ${servercfg} -maxplayers ${maxplayers}" +} + +#### LinuxGSM Settings #### + +## Notification Alerts +# (on|off) + +# More info | https://github.com/GameServerManagers/LinuxGSM/wiki/Alerts#more-info +postalert="off" +postdays="7" +posttarget="https://hastebin.com" + +# Discord Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Discord +discordalert="off" +discordwebhook="webhook" + +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" + +# IFTTT Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/IFTTT +iftttalert="off" +ifttttoken="accesstoken" +iftttevent="linuxgsm_alert" + +# Mailgun Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/mailgun +mailgunalert="off" +mailguntoken="accesstoken" +mailgundomain="example.com" +mailgunemailfrom="alert@example.com" +mailgunemail="email@myemail.com" + +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" +channeltag="" + +# Pushover Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushover +pushoveralert="off" +pushovertoken="accesstoken" + +# Telegram Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Telegram +telegramalert="off" +telegramtoken="accesstoken" +telegramchatid="" + +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" + +#### LinuxGSM Advanced Settings #### + +## SteamCMD Settings +# Server appid +appid="817300" + +## LinuxGSM Server Details +# Do not edit +gamename="Base Defense" +engine="goldsource" + +#### Directories #### +# Edit with care + +## Server Specific Directories +systemdir="${filesdir}/bdef" +executabledir="${serverfiles}" +executable="./hlds_run" +servercfg="${servicename}.cfg" +servercfgdefault="server.cfg" +servercfgdir="${systemdir}" +servercfgfullpath="${servercfgdir}/${servercfg}" + +## Backup Directory +backupdir="${rootdir}/backups" + +## Logging Directories +logdir="${rootdir}/log" +gamelogdir="${systemdir}/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" \ No newline at end of file diff --git a/lgsm/data/serverlist.csv b/lgsm/data/serverlist.csv index 8b91fe6f2..a797e07bd 100644 --- a/lgsm/data/serverlist.csv +++ b/lgsm/data/serverlist.csv @@ -3,6 +3,7 @@ sdtd,sdtdserver,7 Days to Die ark,arkserver,ARK: Survival Evolved bo,boserver,Ballistic Overkill bf1942,bf1942server,Battlefield 1942 +bd,bdserver,Base Defense bmdm,bmdmserver,Black Mesa: Deathmatch bs,bsserver,Blade Symphony bb2,bb2server,BrainBread 2 From 421dbb34f2e7c27461bdf6bdc78de494bea2f4b9 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 14 Mar 2018 14:10:29 +0000 Subject: [PATCH 008/108] missing quote --- lgsm/config-default/config-lgsm/bdserver/_default.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/config-default/config-lgsm/bdserver/_default.cfg b/lgsm/config-default/config-lgsm/bdserver/_default.cfg index 22a2a3425..e050f875a 100644 --- a/lgsm/config-default/config-lgsm/bdserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/bdserver/_default.cfg @@ -13,7 +13,7 @@ ip="0.0.0.0" port="27015" clientport="27005" defaultmap="pve_tomb" -maxplayers="16 +maxplayers="16" ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters fn_parms(){ From 3c20cb054a5d98018f8971c8548017ec775bafde Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 14 Mar 2018 14:12:00 +0000 Subject: [PATCH 009/108] corrected var --- lgsm/config-default/config-lgsm/bdserver/_default.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/config-default/config-lgsm/bdserver/_default.cfg b/lgsm/config-default/config-lgsm/bdserver/_default.cfg index e050f875a..93d2613d4 100644 --- a/lgsm/config-default/config-lgsm/bdserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/bdserver/_default.cfg @@ -92,7 +92,7 @@ engine="goldsource" # Edit with care ## Server Specific Directories -systemdir="${filesdir}/bdef" +systemdir="${serverfiles}/bdef" executabledir="${serverfiles}" executable="./hlds_run" servercfg="${servicename}.cfg" From 5d317d6ff19edffefe6238a8b4a1e7a514222227 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 14 Mar 2018 14:14:52 +0000 Subject: [PATCH 010/108] removed file download as no longer required --- lgsm/functions/install_server_files.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/lgsm/functions/install_server_files.sh b/lgsm/functions/install_server_files.sh index cc77a7ba2..5e15a75d3 100644 --- a/lgsm/functions/install_server_files.sh +++ b/lgsm/functions/install_server_files.sh @@ -9,8 +9,6 @@ local commandaction="Install" local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" fn_install_server_files(){ - if [ "${gamename}" == "Base Defense" ]; then - fileurl="https://s3.amazonaws.com/linuxgsm/base_defense_1775.tar.gz"; filedir="${tmpdir}"; filename="base_defense_1775.tar.gz"; executecmd="noexecute" run="norun"; force="noforce"; md5="a272b65ab014d9e9a103fad26ce11ea5" if [ "${gamename}" == "Battlefield: 1942" ]; then remote_fileurl="http://files.linuxgsm.com/BattleField1942/bf1942_lnxded-1.61-hacked-to-1.612.full.tar.bz2"; local_filedir="${tmpdir}"; local_filename="bf1942_lnxded-1.61-hacked-to-1.612.full.tar.bz2"; chmodx="nochmodx" run="norun"; force="noforce"; md5="a86a5d3cd64ca59abcc9bb9f777c2e5d" elif [ "${gamename}" == "Call of Duty" ]; then From 797c69c2f5ba3967e959925e8920398e7424d03f Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 14 Mar 2018 14:42:58 +0000 Subject: [PATCH 011/108] Base Defense Glibc --- lgsm/functions/info_glibc.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lgsm/functions/info_glibc.sh b/lgsm/functions/info_glibc.sh index b04f79644..9ca175c1e 100644 --- a/lgsm/functions/info_glibc.sh +++ b/lgsm/functions/info_glibc.sh @@ -12,6 +12,9 @@ if [ "${gamename}" == "ARK: Survival Evolved" ]; then 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" From 6c38a3c869e5a71f22bb1de612aad4725d76a737 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 14 Mar 2018 14:51:47 +0000 Subject: [PATCH 012/108] prevent error message in if --- lgsm/functions/install_config.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/install_config.sh b/lgsm/functions/install_config.sh index d492ac56e..a6f59a962 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -62,7 +62,7 @@ fn_set_config_vars(){ fn_script_log_info "changing hostname." sleep 1 - if [ $(grep SERVERNAME=SERVERNAME \"${lgsmdir}/config-default/config-game/${config}\") ]; then + if [ $(grep SERVERNAME=SERVERNAME \"${lgsmdir}/config-default/config-game/${config}\" 2>/dev/null) ]; then sed -i "s/SERVERNAME=SERVERNAME/SERVERNAME=${servername}/g" "${servercfgfullpath}" else sed -i "s/SERVERNAME/${servername}/g" "${servercfgfullpath}" From 81144f2d479d1eb28b2e41163e374aa8ceb2f23d Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 14 Mar 2018 14:56:50 +0000 Subject: [PATCH 013/108] changed maxplayers to default of 3 --- lgsm/config-default/config-lgsm/bdserver/_default.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/config-default/config-lgsm/bdserver/_default.cfg b/lgsm/config-default/config-lgsm/bdserver/_default.cfg index 93d2613d4..6aefdd42e 100644 --- a/lgsm/config-default/config-lgsm/bdserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/bdserver/_default.cfg @@ -13,7 +13,7 @@ ip="0.0.0.0" port="27015" clientport="27005" defaultmap="pve_tomb" -maxplayers="16" +maxplayers="3" ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters fn_parms(){ From 182a6d15db836e4dfd1aeb04c04e2857ecea31e5 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 14 Mar 2018 17:02:37 +0000 Subject: [PATCH 014/108] Updating base defense missing quote corrected var removed file download as no longer required Base Defense Glibc changed maxplayers to default of 3 --- BaseDefense/bdefserver | 199 ------------------ .../config-lgsm/bdserver/_default.cfg | 118 +++++++++++ lgsm/data/serverlist.csv | 1 + lgsm/functions/info_glibc.sh | 3 + lgsm/functions/install_server_files.sh | 2 - 5 files changed, 122 insertions(+), 201 deletions(-) delete mode 100644 BaseDefense/bdefserver create mode 100644 lgsm/config-default/config-lgsm/bdserver/_default.cfg diff --git a/BaseDefense/bdefserver b/BaseDefense/bdefserver deleted file mode 100644 index 444bf0013..000000000 --- a/BaseDefense/bdefserver +++ /dev/null @@ -1,199 +0,0 @@ -#!/bin/bash -# Project: Game Server Managers - LinuxGSM -# Author: Daniel Gibbs -# License: MIT License, Copyright (c) 2017 Daniel Gibbs -# Purpose: Base Defense | Server Management Script -# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors -# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki -# Website: https://gameservermanagers.com - -# Debugging -if [ -f ".dev-debug" ]; then - exec 5>dev-debug.log - BASH_XTRACEFD="5" - set -x -fi - -version="170219" - -########################## -######## Settings ######## -########################## - -#### Server Settings #### - -## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters -defaultmap="pve_tomb" -maxplayers="16" -port="27015" -clientport="27005" -ip="0.0.0.0" - -## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters -fn_parms(){ -parms="-game bdef -strictportbind +ip ${ip} -port ${port} +clientport ${clientport} +map ${defaultmap} +servercfgfile ${servercfg} -maxplayers ${maxplayers}" -} - -#### LinuxGSM Settings #### - -## Notification Alerts -# (on|off) -# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email -emailalert="off" -email="email@example.com" -emailfrom="" - -# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet -pushbulletalert="off" -pushbullettoken="accesstoken" -channeltag="" - -## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update -updateonstart="off" - -## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup -maxbackups="4" -maxbackupdays="30" -stoponbackup="on" - -## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging -consolelogging="on" -logdays="7" - -#### LinuxGSM Advanced Settings #### - -## 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" -branch="" - -## Github Branch Select -# Allows for the use of different function files -# from a different repo and/or branch. -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="master" - -## LinuxGSM Server Details -# Do not edit -gamename="Base Defense" -engine="goldsource" - -## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers -servicename="bdef_server" - -#### Directories #### -# Edit with care - -## Work Directories -rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" -selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" -lockselfname=".${servicename}.lock" -lgsmdir="${rootdir}/lgsm" -functionsdir="${lgsmdir}/functions" -libdir="${lgsmdir}/lib" -tmpdir="${lgsmdir}/tmp" -filesdir="${rootdir}/serverfiles" - -## Server Specific Directories -systemdir="${filesdir}/bdef" -executabledir="${filesdir}" -executable="./hlds_run" -servercfg="${servicename}.cfg" -servercfgdefault="server.cfg" -servercfgdir="${systemdir}" -servercfgfullpath="${servercfgdir}/${servercfg}" - -## Backup Directory -backupdir="${rootdir}/backups" - -## Logging Directories -gamelogdir="${systemdir}/logs" -scriptlogdir="${rootdir}/log/script" -consolelogdir="${rootdir}/log/console" -scriptlog="${scriptlogdir}/${servicename}-script.log" -consolelog="${consolelogdir}/${servicename}-console.log" -emaillog="${scriptlogdir}/${servicename}-email.log" - -## Logs Naming -scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" -consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" - -######################## -######## Script ######## -###### Do not edit ##### -######################## - -# Fetches core_dl for file downloads -fn_fetch_core_dl(){ -github_file_url_dir="lgsm/functions" -github_file_url_name="${functionfile}" -filedir="${functionsdir}" -filename="${github_file_url_name}" -githuburl="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/${github_file_url_dir}/${github_file_url_name}" -# If the file is missing, then download -if [ ! -f "${filedir}/${filename}" ]; then - if [ ! -d "${filedir}" ]; then - mkdir -p "${filedir}" - fi - echo -e " fetching ${filename}...\c" - # Check curl exists and use available path - curlpaths="$(command -v curl 2>/dev/null) $(which curl >/dev/null 2>&1) /usr/bin/curl /bin/curl /usr/sbin/curl /sbin/curl)" - for curlcmd in ${curlpaths} - do - if [ -x "${curlcmd}" ]; then - break - fi - done - # If curl exists download file - if [ "$(basename ${curlcmd})" == "curl" ]; then - curlfetch=$(${curlcmd} -s --fail -o "${filedir}/${filename}" "${githuburl}" 2>&1) - if [ $? -ne 0 ]; then - echo -e "\e[0;31mFAIL\e[0m\n" - echo "${curlfetch}" - echo -e "${githuburl}\n" - exit 1 - else - echo -e "\e[0;32mOK\e[0m" - fi - else - echo -e "\e[0;31mFAIL\e[0m\n" - echo "Curl is not installed!" - echo -e "" - exit 1 - fi - chmod +x "${filedir}/${filename}" -fi -source "${filedir}/${filename}" -} - -core_dl.sh(){ -# Functions are defined in core_functions.sh. -functionfile="${FUNCNAME}" -fn_fetch_core_dl -} - -core_functions.sh(){ -# Functions are defined in core_functions.sh. -functionfile="${FUNCNAME}" -fn_fetch_core_dl -} - -# Prevent from running this script as root. -if [ "$(whoami)" = "root" ]; then - if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then - echo "[ FAIL ] Do NOT run this script as root!" - exit 1 - else - core_functions.sh - check_root.sh - fi -fi - -core_dl.sh -core_functions.sh -getopt=$1 -core_getopt.sh \ No newline at end of file diff --git a/lgsm/config-default/config-lgsm/bdserver/_default.cfg b/lgsm/config-default/config-lgsm/bdserver/_default.cfg new file mode 100644 index 000000000..6aefdd42e --- /dev/null +++ b/lgsm/config-default/config-lgsm/bdserver/_default.cfg @@ -0,0 +1,118 @@ +################################## +######## 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://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters +ip="0.0.0.0" +port="27015" +clientport="27005" +defaultmap="pve_tomb" +maxplayers="3" + +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +fn_parms(){ +parms="-game bdef -strictportbind +ip ${ip} -port ${port} +clientport ${clientport} +map ${defaultmap} +servercfgfile ${servercfg} -maxplayers ${maxplayers}" +} + +#### LinuxGSM Settings #### + +## Notification Alerts +# (on|off) + +# More info | https://github.com/GameServerManagers/LinuxGSM/wiki/Alerts#more-info +postalert="off" +postdays="7" +posttarget="https://hastebin.com" + +# Discord Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Discord +discordalert="off" +discordwebhook="webhook" + +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" + +# IFTTT Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/IFTTT +iftttalert="off" +ifttttoken="accesstoken" +iftttevent="linuxgsm_alert" + +# Mailgun Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/mailgun +mailgunalert="off" +mailguntoken="accesstoken" +mailgundomain="example.com" +mailgunemailfrom="alert@example.com" +mailgunemail="email@myemail.com" + +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" +channeltag="" + +# Pushover Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushover +pushoveralert="off" +pushovertoken="accesstoken" + +# Telegram Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Telegram +telegramalert="off" +telegramtoken="accesstoken" +telegramchatid="" + +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" + +#### LinuxGSM Advanced Settings #### + +## SteamCMD Settings +# Server appid +appid="817300" + +## LinuxGSM Server Details +# Do not edit +gamename="Base Defense" +engine="goldsource" + +#### Directories #### +# Edit with care + +## Server Specific Directories +systemdir="${serverfiles}/bdef" +executabledir="${serverfiles}" +executable="./hlds_run" +servercfg="${servicename}.cfg" +servercfgdefault="server.cfg" +servercfgdir="${systemdir}" +servercfgfullpath="${servercfgdir}/${servercfg}" + +## Backup Directory +backupdir="${rootdir}/backups" + +## Logging Directories +logdir="${rootdir}/log" +gamelogdir="${systemdir}/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" \ No newline at end of file diff --git a/lgsm/data/serverlist.csv b/lgsm/data/serverlist.csv index 8b91fe6f2..a797e07bd 100644 --- a/lgsm/data/serverlist.csv +++ b/lgsm/data/serverlist.csv @@ -3,6 +3,7 @@ sdtd,sdtdserver,7 Days to Die ark,arkserver,ARK: Survival Evolved bo,boserver,Ballistic Overkill bf1942,bf1942server,Battlefield 1942 +bd,bdserver,Base Defense bmdm,bmdmserver,Black Mesa: Deathmatch bs,bsserver,Blade Symphony bb2,bb2server,BrainBread 2 diff --git a/lgsm/functions/info_glibc.sh b/lgsm/functions/info_glibc.sh index b04f79644..9ca175c1e 100644 --- a/lgsm/functions/info_glibc.sh +++ b/lgsm/functions/info_glibc.sh @@ -12,6 +12,9 @@ if [ "${gamename}" == "ARK: Survival Evolved" ]; then 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" diff --git a/lgsm/functions/install_server_files.sh b/lgsm/functions/install_server_files.sh index cc77a7ba2..5e15a75d3 100644 --- a/lgsm/functions/install_server_files.sh +++ b/lgsm/functions/install_server_files.sh @@ -9,8 +9,6 @@ local commandaction="Install" local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" fn_install_server_files(){ - if [ "${gamename}" == "Base Defense" ]; then - fileurl="https://s3.amazonaws.com/linuxgsm/base_defense_1775.tar.gz"; filedir="${tmpdir}"; filename="base_defense_1775.tar.gz"; executecmd="noexecute" run="norun"; force="noforce"; md5="a272b65ab014d9e9a103fad26ce11ea5" if [ "${gamename}" == "Battlefield: 1942" ]; then remote_fileurl="http://files.linuxgsm.com/BattleField1942/bf1942_lnxded-1.61-hacked-to-1.612.full.tar.bz2"; local_filedir="${tmpdir}"; local_filename="bf1942_lnxded-1.61-hacked-to-1.612.full.tar.bz2"; chmodx="nochmodx" run="norun"; force="noforce"; md5="a86a5d3cd64ca59abcc9bb9f777c2e5d" elif [ "${gamename}" == "Call of Duty" ]; then From bbcf07603d05c72b8d05a51738cbbcc497a53f08 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 14 Mar 2018 17:37:22 +0000 Subject: [PATCH 015/108] removed which command as per shellcheck command is a POSIX and will exclusivly use this moving forward. https://github.com/koalaman/shellcheck/wiki/SC2230 --- lgsm/functions/check_deps.sh | 4 ++-- lgsm/functions/command_stop.sh | 2 +- lgsm/functions/core_dl.sh | 8 +------- lgsm/functions/update_ts3.sh | 2 +- linuxgsm.sh | 13 ++++--------- tests/tests_jc2server.sh | 13 ++++--------- tests/tests_ts3server.sh | 13 ++++--------- 7 files changed, 17 insertions(+), 38 deletions(-) diff --git a/lgsm/functions/check_deps.sh b/lgsm/functions/check_deps.sh index 31a2fb077..705d36a9c 100644 --- a/lgsm/functions/check_deps.sh +++ b/lgsm/functions/check_deps.sh @@ -149,7 +149,7 @@ if [ -n "$(command -v dpkg-query 2>/dev/null)" ]; then # All servers except ts3 require tmux if [ "${gamename}" != "TeamSpeak 3" ]; then - if [ "$(command -v tmux 2>/dev/null)" ]||[ "$(which tmux 2>/dev/null)" ]||[ -f "/usr/bin/tmux" ]||[ -f "/bin/tmux" ]; then + if [ "$(command -v tmux 2>/dev/null)" ]; then tmuxcheck=1 # Added for users compiling tmux from source to bypass check. else array_deps_required+=( tmux ) @@ -246,7 +246,7 @@ elif [ -n "$(command -v yum 2>/dev/null)" ]; then # All servers except ts3 require tmux if [ "${gamename}" != "TeamSpeak 3" ]; then - if [ "$(command -v tmux 2>/dev/null)" ]||[ "$(which tmux 2>/dev/null)" ]||[ -f "/usr/bin/tmux" ]||[ -f "/bin/tmux" ]; then + if [ "$(command -v tmux 2>/dev/null)" ]; then tmuxcheck=1 # Added for users compiling tmux from source to bypass check. else array_deps_required+=( tmux ) diff --git a/lgsm/functions/command_stop.sh b/lgsm/functions/command_stop.sh index 13040a00f..97fdf6566 100644 --- a/lgsm/functions/command_stop.sh +++ b/lgsm/functions/command_stop.sh @@ -118,7 +118,7 @@ fn_stop_graceful_sdtd(){ sleep 1 if [ "${telnetenabled}" == "false" ]; then fn_print_info_nl "Graceful: telnet: DISABLED: Enable in ${servercfg}" - elif [ "$(command -v expect 2>/dev/null)" ]||[ "$(which expect >/dev/null 2>&1)" ]; then + elif [ "$(command -v expect 2>/dev/null)" ]; then # Tries to shutdown with both localhost and server IP. for telnetip in 127.0.0.1 ${ip}; do fn_print_dots "Graceful: telnet: ${telnetip}" diff --git a/lgsm/functions/core_dl.sh b/lgsm/functions/core_dl.sh index d279ab85b..f45b8938d 100644 --- a/lgsm/functions/core_dl.sh +++ b/lgsm/functions/core_dl.sh @@ -238,13 +238,7 @@ fn_update_function(){ } # Defines curl path -curl_paths_array=($(command -v curl 2>/dev/null) $(which curl >/dev/null 2>&1) /usr/bin/curl /bin/curl /usr/sbin/curl /sbin/curl) -for curlpath in "${curl_paths_array}" -do - if [ -x "${curlpath}" ]; then - break - fi -done +curlpath=$(command -v curl 2>/dev/null) if [ "$(basename ${curlpath})" != "curl" ]; then echo "[ FAIL ] Curl is not installed" diff --git a/lgsm/functions/update_ts3.sh b/lgsm/functions/update_ts3.sh index 2e33c9203..e2f2691ef 100644 --- a/lgsm/functions/update_ts3.sh +++ b/lgsm/functions/update_ts3.sh @@ -206,7 +206,7 @@ fn_update_ts3_compare(){ fn_update_ts3_arch if [ "${installer}" == "1" ]; then # if jq available uses json update checker - if [ "$(command -v jq)" ]||[ "$(which jq >/dev/null 2>&1)" ]; then + if [ "$(command -v jq >/dev/null 2>&1)" ]; then fn_update_ts3_availablebuild else fn_update_ts3_availablebuild_legacy diff --git a/linuxgsm.sh b/linuxgsm.sh index 1b87bb284..95cb95562 100755 --- a/linuxgsm.sh +++ b/linuxgsm.sh @@ -70,13 +70,8 @@ fn_bootstrap_fetch_file(){ mkdir -p "${local_filedir}" fi # Defines curl path - curl_paths_array=($(command -v curl 2>/dev/null) $(which curl >/dev/null 2>&1) /usr/bin/curl /bin/curl /usr/sbin/curl /sbin/curl) - for curlpath in "${curl_paths_array}" - do - if [ -x "${curlpath}" ]; then - break - fi - done + curlpath=$(command -v curl 2>/dev/null) + # If curl exists download file if [ "$(basename ${curlpath})" == "curl" ]; then # trap to remove part downloaded files @@ -198,8 +193,8 @@ fn_install_menu() { options=$4 # Get menu command for menucmd in whiptail dialog bash; do - if [ -x $(which ${menucmd}) ]; then - menucmd=$(which ${menucmd}) + if [ -x $(command -v ${menucmd}) ]; then + menucmd=$(command -v ${menucmd}) break fi done diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index c0d6d0b19..1b2b744e8 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -65,13 +65,8 @@ fn_bootstrap_fetch_file(){ mkdir -p "${local_filedir}" fi # Defines curl path - curl_paths_array=($(command -v curl 2>/dev/null) $(which curl >/dev/null 2>&1) /usr/bin/curl /bin/curl /usr/sbin/curl /sbin/curl) - for curlpath in "${curl_paths_array}" - do - if [ -x "${curlpath}" ]; then - break - fi - done + curlpath=$(command -v curl 2>/dev/null) + # If curl exists download file if [ "$(basename ${curlpath})" == "curl" ]; then # trap to remove part downloaded files @@ -193,8 +188,8 @@ fn_install_menu() { options=$4 # Get menu command for menucmd in whiptail dialog bash; do - if [ -x $(which ${menucmd}) ]; then - menucmd=$(which ${menucmd}) + if [ -x $(command -v ${menucmd}) ]; then + menucmd=$(command -v ${menucmd}) break fi done diff --git a/tests/tests_ts3server.sh b/tests/tests_ts3server.sh index 7f327dc13..bd36cf34c 100644 --- a/tests/tests_ts3server.sh +++ b/tests/tests_ts3server.sh @@ -65,13 +65,8 @@ fn_bootstrap_fetch_file(){ mkdir -p "${local_filedir}" fi # Defines curl path - curl_paths_array=($(command -v curl 2>/dev/null) $(which curl >/dev/null 2>&1) /usr/bin/curl /bin/curl /usr/sbin/curl /sbin/curl) - for curlpath in "${curl_paths_array}" - do - if [ -x "${curlpath}" ]; then - break - fi - done + curlpath=$(command -v curl 2>/dev/null) + # If curl exists download file if [ "$(basename ${curlpath})" == "curl" ]; then # trap to remove part downloaded files @@ -193,8 +188,8 @@ fn_install_menu() { options=$4 # Get menu command for menucmd in whiptail dialog bash; do - if [ -x $(which ${menucmd}) ]; then - menucmd=$(which ${menucmd}) + if [ -x $(command -v ${menucmd}) ]; then + menucmd=$(command -v ${menucmd}) break fi done From 5111f4eb75db5b6267f8de2ce6f3ba402284a0dc Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 14 Mar 2018 17:54:03 +0000 Subject: [PATCH 016/108] Testing shellcheck in travis --- .travis.yml | 5 +++-- tests/tests_shellcheck.sh | 15 +++++++++++++++ 2 files changed, 18 insertions(+), 2 deletions(-) create mode 100644 tests/tests_shellcheck.sh diff --git a/.travis.yml b/.travis.yml index c52f1af36..777b9789b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -33,5 +33,6 @@ addons: script: - - bash tests/tests_jc2server.sh - - bash tests/tests_ts3server.sh + #- bash tests/tests_jc2server.sh + #- bash tests/tests_ts3server.sh + - bash tests/tests_shellcheck.sh diff --git a/tests/tests_shellcheck.sh b/tests/tests_shellcheck.sh new file mode 100644 index 000000000..23caf018d --- /dev/null +++ b/tests/tests_shellcheck.sh @@ -0,0 +1,15 @@ +#!/bin/bash +# Project: Game Server Managers - LinuxGSM +# Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2017 Daniel Gibbs +# Purpose: TravisCI Tests: Teamspeak 3 | Linux Game Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki +# Website: https://gameservermanagers.com + +githubuser="GameServerManagers" +githubrepo="LinuxGSM" +githubbranch="$TRAVIS_BRANCH" + +git clone +shellcheck --shell=bash --exclude=SC2154,SC2034 GameServerManagers/LinuxGSM/lgsm/functions/* \ No newline at end of file From 2107a38c74f3810ae70722259d769e7d0744fe14 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 14 Mar 2018 18:04:44 +0000 Subject: [PATCH 017/108] setting up shellcheck docker image --- .travis.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 777b9789b..c16fb4e09 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,6 +2,12 @@ language: bash dist: trusty sudo: required +services: + - docker + +before_install: + - docker pull koalaman/shellcheck + before_script: - curl -L "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/shunit2/shunit2-2.1.6.tgz" | tar zx @@ -35,4 +41,4 @@ script: #- bash tests/tests_jc2server.sh #- bash tests/tests_ts3server.sh - - bash tests/tests_shellcheck.sh + - docker run -v $(pwd):/scripts koalaman/shellcheckbash tests/tests_shellcheck.sh \ No newline at end of file From bf38e0d3558841b50d9b20806a7c445e5a4b478b Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 14 Mar 2018 18:19:31 +0000 Subject: [PATCH 018/108] more travis tests --- .travis.yml | 3 ++- tests/tests_shellcheck.sh | 3 +-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index c16fb4e09..a604259d2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -36,9 +36,10 @@ addons: - libstdc++6:i386 - net-tools - iproute2 + - shellcheck script: #- bash tests/tests_jc2server.sh #- bash tests/tests_ts3server.sh - - docker run -v $(pwd):/scripts koalaman/shellcheckbash tests/tests_shellcheck.sh \ No newline at end of file + - tests/tests_shellcheck.sh \ No newline at end of file diff --git a/tests/tests_shellcheck.sh b/tests/tests_shellcheck.sh index 23caf018d..e5c49b0f1 100644 --- a/tests/tests_shellcheck.sh +++ b/tests/tests_shellcheck.sh @@ -10,6 +10,5 @@ githubuser="GameServerManagers" githubrepo="LinuxGSM" githubbranch="$TRAVIS_BRANCH" - -git clone +ls -al shellcheck --shell=bash --exclude=SC2154,SC2034 GameServerManagers/LinuxGSM/lgsm/functions/* \ No newline at end of file From e7984509ef088c3cf71b87bca7d8b4e758a2e976 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 14 Mar 2018 18:23:59 +0000 Subject: [PATCH 019/108] removed docker --- .travis.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index a604259d2..7dd347e10 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,12 +2,6 @@ language: bash dist: trusty sudo: required -services: - - docker - -before_install: - - docker pull koalaman/shellcheck - before_script: - curl -L "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/shunit2/shunit2-2.1.6.tgz" | tar zx From cd25682a9f31f0a2c17296c3623c57d2d4f83f0a Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 14 Mar 2018 18:33:49 +0000 Subject: [PATCH 020/108] test --- tests/tests_shellcheck.sh | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/tests/tests_shellcheck.sh b/tests/tests_shellcheck.sh index e5c49b0f1..6dd535fb4 100644 --- a/tests/tests_shellcheck.sh +++ b/tests/tests_shellcheck.sh @@ -7,8 +7,5 @@ # Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com -githubuser="GameServerManagers" -githubrepo="LinuxGSM" -githubbranch="$TRAVIS_BRANCH" -ls -al +command -v shellcheck shellcheck --shell=bash --exclude=SC2154,SC2034 GameServerManagers/LinuxGSM/lgsm/functions/* \ No newline at end of file From 6a3373adb7fd121728714bc3de5251ec2a3ae57b Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 14 Mar 2018 18:37:09 +0000 Subject: [PATCH 021/108] test --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 7dd347e10..385229191 100644 --- a/.travis.yml +++ b/.travis.yml @@ -36,4 +36,4 @@ script: #- bash tests/tests_jc2server.sh #- bash tests/tests_ts3server.sh - - tests/tests_shellcheck.sh \ No newline at end of file + - bash tests/tests_shellcheck.sh \ No newline at end of file From da5e3b2a78625f5b0d9b6b7abe86d28ea960d04e Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 14 Mar 2018 18:39:27 +0000 Subject: [PATCH 022/108] test --- tests/tests_shellcheck.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/tests_shellcheck.sh b/tests/tests_shellcheck.sh index 6dd535fb4..dafe662b7 100644 --- a/tests/tests_shellcheck.sh +++ b/tests/tests_shellcheck.sh @@ -7,5 +7,6 @@ # Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com -command -v shellcheck + +ls -al shellcheck --shell=bash --exclude=SC2154,SC2034 GameServerManagers/LinuxGSM/lgsm/functions/* \ No newline at end of file From 8e0b024871426945e089da4908e6660f91a3ffb0 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 14 Mar 2018 18:42:01 +0000 Subject: [PATCH 023/108] test --- tests/tests_shellcheck.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/tests_shellcheck.sh b/tests/tests_shellcheck.sh index dafe662b7..c088f7609 100644 --- a/tests/tests_shellcheck.sh +++ b/tests/tests_shellcheck.sh @@ -9,4 +9,4 @@ ls -al -shellcheck --shell=bash --exclude=SC2154,SC2034 GameServerManagers/LinuxGSM/lgsm/functions/* \ No newline at end of file +shellcheck --shell=bash --exclude=SC2154,SC2034 lgsm/functions/* \ No newline at end of file From dd913baa12dac97754f76dab2ae99b14b7a89d5b Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Wed, 14 Mar 2018 19:43:09 +0100 Subject: [PATCH 024/108] Corrected else indentation --- lgsm/functions/update_ts3.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/update_ts3.sh b/lgsm/functions/update_ts3.sh index 2e33c9203..7cc149517 100644 --- a/lgsm/functions/update_ts3.sh +++ b/lgsm/functions/update_ts3.sh @@ -212,7 +212,7 @@ if [ "${installer}" == "1" ]; then fn_update_ts3_availablebuild_legacy fi fn_update_ts3_dl - else +else # Checks for server update from teamspeak.com using a mirror dl.4players.de. fn_print_dots "Checking for update: teamspeak.com" fn_script_log_info "Checking for update: teamspeak.com" From 0dc2b645f3b42f7dcce10953b1cd8c238f1411d9 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Wed, 14 Mar 2018 19:55:55 +0100 Subject: [PATCH 025/108] Added conditional server salt setting for Rust We don't have the range, but it doesn't prevent users from setting a salt to a known value on an existing server, that they can know running rcon command: server.salt Fixes #1364 Also fixed an unneeded space line 22. --- .../config-lgsm/rustserver/_default.cfg | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/lgsm/config-default/config-lgsm/rustserver/_default.cfg b/lgsm/config-default/config-lgsm/rustserver/_default.cfg index a24932d8a..1ac4b4db1 100644 --- a/lgsm/config-default/config-lgsm/rustserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/rustserver/_default.cfg @@ -19,7 +19,8 @@ servername="Rust" maxplayers="50" # Advanced Start Settings -seed="" # default random; range : 1 to 2147483647 ; used to change or reproduce a procedural map +seed="" # default random; range : 1 to 2147483647 ; used to change or reproduce a procedural map +salt="" # default random; range : unknown range ; used to recover a known setting from an existing map worldsize="3000" # default 3000; range : 1000 to 6000 ; map size in meters saveinterval="300" # Auto-save in seconds tickrate="30" # default 30; range : 15 to 100 @@ -34,7 +35,14 @@ else # Keep randomness of the number if not set conditionalseed="" fi -parms="-batchmode +server.ip ${ip} +server.port ${port} +server.tickrate ${tickrate} +server.hostname \"${servername}\" +server.identity \"${servicename}\" ${conditionalseed} +server.maxplayers ${maxplayers} +server.worldsize ${worldsize} +server.saveinterval ${saveinterval} +rcon.web ${rconweb} +rcon.ip ${ip} +rcon.port ${rconport} +rcon.password \"${rconpassword}\" -logfile \"${gamelogdate}\"" +if [ -n "${salt}" ]; then + # If set, then add to start parms + conditionalsalt="+server.salt ${salt}" +else + # Keep randomness of the number if not set + conditionalsalt="" +fi +parms="-batchmode +server.ip ${ip} +server.port ${port} +server.tickrate ${tickrate} +server.hostname \"${servername}\" +server.identity \"${servicename}\" ${conditionalseed} ${conditionalsalt} +server.maxplayers ${maxplayers} +server.worldsize ${worldsize} +server.saveinterval ${saveinterval} +rcon.web ${rconweb} +rcon.ip ${ip} +rcon.port ${rconport} +rcon.password \"${rconpassword}\" -logfile \"${gamelogdate}\"" } #### LinuxGSM Settings #### From 80b13ac739b4daaa27711417b2f5e8939ca336f2 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 14 Mar 2018 19:34:13 +0000 Subject: [PATCH 026/108] tests --- tests/tests_shellcheck.sh | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/tests/tests_shellcheck.sh b/tests/tests_shellcheck.sh index c088f7609..c3f5fbda0 100644 --- a/tests/tests_shellcheck.sh +++ b/tests/tests_shellcheck.sh @@ -2,11 +2,10 @@ # Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs # License: MIT License, Copyright (c) 2017 Daniel Gibbs -# Purpose: TravisCI Tests: Teamspeak 3 | Linux Game Server Management Script +# Purpose: TravisCI Tests: Shellcheck | Linux Game Server Management Script # Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors # Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com - -ls -al -shellcheck --shell=bash --exclude=SC2154,SC2034 lgsm/functions/* \ No newline at end of file +find . -type f -name "*.sh" -exec shellcheck --shell=bash --exclude=SC2154,SC2034 {} \; +find . -type f -name "*.cfg" -exec shellcheck --shell=bash --exclude=SC2154,SC2034 {} \; From adc0f17cc0cf44ce01c4dc33eb9e2218091e397c Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 14 Mar 2018 20:12:32 +0000 Subject: [PATCH 027/108] test --- tests/tests_shellcheck.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/tests_shellcheck.sh b/tests/tests_shellcheck.sh index c3f5fbda0..7a9608953 100644 --- a/tests/tests_shellcheck.sh +++ b/tests/tests_shellcheck.sh @@ -7,5 +7,5 @@ # Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com -find . -type f -name "*.sh" -exec shellcheck --shell=bash --exclude=SC2154,SC2034 {} \; -find . -type f -name "*.cfg" -exec shellcheck --shell=bash --exclude=SC2154,SC2034 {} \; +find . -type f -name "shunit2-2.1.6" -prune -name "*.sh" -exec shellcheck --shell=bash --exclude=SC2154,SC2034 {} \; +find . -type f -name "shunit2-2.1.6" -prune -name "*.cfg" -exec shellcheck --shell=bash --exclude=SC2154,SC2034 {} \; From 53b177df3b0261891918af7e5d511129d43c50c9 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 14 Mar 2018 20:17:13 +0000 Subject: [PATCH 028/108] test --- tests/tests_shellcheck.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/tests_shellcheck.sh b/tests/tests_shellcheck.sh index 7a9608953..100af3045 100644 --- a/tests/tests_shellcheck.sh +++ b/tests/tests_shellcheck.sh @@ -7,5 +7,5 @@ # Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com -find . -type f -name "shunit2-2.1.6" -prune -name "*.sh" -exec shellcheck --shell=bash --exclude=SC2154,SC2034 {} \; -find . -type f -name "shunit2-2.1.6" -prune -name "*.cfg" -exec shellcheck --shell=bash --exclude=SC2154,SC2034 {} \; +find . -type d \( ! -name "shunit2-2.1.6" \) -type f -prune -name "*.sh" -exec shellcheck --shell=bash --exclude=SC2154,SC2034 {} \; +find . -type d \( ! -name "shunit2-2.1.6" \) -type f -prune -name "*.cfg" -exec shellcheck --shell=bash --exclude=SC2154,SC2034 {} \; From bb83370cb75eb672ff8576b11e2f59d15c0044c0 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 14 Mar 2018 20:33:46 +0000 Subject: [PATCH 029/108] test --- tests/tests_shellcheck.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/tests_shellcheck.sh b/tests/tests_shellcheck.sh index 100af3045..ed916bb21 100644 --- a/tests/tests_shellcheck.sh +++ b/tests/tests_shellcheck.sh @@ -7,5 +7,5 @@ # Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com -find . -type d \( ! -name "shunit2-2.1.6" \) -type f -prune -name "*.sh" -exec shellcheck --shell=bash --exclude=SC2154,SC2034 {} \; -find . -type d \( ! -name "shunit2-2.1.6" \) -type f -prune -name "*.cfg" -exec shellcheck --shell=bash --exclude=SC2154,SC2034 {} \; +find . -type f -name "*.sh" -not -path "./shunit2-2.1.6/*" -exec shellcheck --shell=bash --exclude=SC2154,SC2034 {} \; +find . -type f -name "*.cfg" -not -path "./shunit2-2.1.6/*" -exec shellcheck --shell=bash --exclude=SC2154,SC2034 {} \; From 9b0309b799abd380d062921b056718cec3998508 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 14 Mar 2018 20:40:03 +0000 Subject: [PATCH 030/108] finalising tests --- .travis.yml | 5 ++--- tests/tests_shellcheck.sh | 5 +++++ 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 385229191..24af341a5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -33,7 +33,6 @@ addons: - shellcheck script: - - #- bash tests/tests_jc2server.sh - #- bash tests/tests_ts3server.sh + - bash tests/tests_jc2server.sh + - bash tests/tests_ts3server.sh - bash tests/tests_shellcheck.sh \ No newline at end of file diff --git a/tests/tests_shellcheck.sh b/tests/tests_shellcheck.sh index ed916bb21..9759825d2 100644 --- a/tests/tests_shellcheck.sh +++ b/tests/tests_shellcheck.sh @@ -7,5 +7,10 @@ # Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +echo "START Shellcheck" +echo "=================================" find . -type f -name "*.sh" -not -path "./shunit2-2.1.6/*" -exec shellcheck --shell=bash --exclude=SC2154,SC2034 {} \; find . -type f -name "*.cfg" -not -path "./shunit2-2.1.6/*" -exec shellcheck --shell=bash --exclude=SC2154,SC2034 {} \; +echo "=================================" +echo "END Shellcheck" \ No newline at end of file From 58a6a8b7525c3b065d21d7e215e91132590d197f Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 14 Mar 2018 21:08:21 +0000 Subject: [PATCH 031/108] Added Shellcheck to travis --- .travis.yml | 3 ++- tests/tests_shellcheck.sh | 16 ++++++++++++++++ 2 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 tests/tests_shellcheck.sh diff --git a/.travis.yml b/.travis.yml index c52f1af36..24af341a5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -30,8 +30,9 @@ addons: - libstdc++6:i386 - net-tools - iproute2 + - shellcheck script: - - bash tests/tests_jc2server.sh - bash tests/tests_ts3server.sh + - bash tests/tests_shellcheck.sh \ No newline at end of file diff --git a/tests/tests_shellcheck.sh b/tests/tests_shellcheck.sh new file mode 100644 index 000000000..9759825d2 --- /dev/null +++ b/tests/tests_shellcheck.sh @@ -0,0 +1,16 @@ +#!/bin/bash +# Project: Game Server Managers - LinuxGSM +# Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2017 Daniel Gibbs +# Purpose: TravisCI Tests: Shellcheck | Linux Game Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki +# Website: https://gameservermanagers.com + + +echo "START Shellcheck" +echo "=================================" +find . -type f -name "*.sh" -not -path "./shunit2-2.1.6/*" -exec shellcheck --shell=bash --exclude=SC2154,SC2034 {} \; +find . -type f -name "*.cfg" -not -path "./shunit2-2.1.6/*" -exec shellcheck --shell=bash --exclude=SC2154,SC2034 {} \; +echo "=================================" +echo "END Shellcheck" \ No newline at end of file From 06deb21d33d301e40c47649138eb7a27e75cc949 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 14 Mar 2018 21:10:18 +0000 Subject: [PATCH 032/108] removed line --- tests/tests_shellcheck.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/tests_shellcheck.sh b/tests/tests_shellcheck.sh index 9759825d2..8970de676 100644 --- a/tests/tests_shellcheck.sh +++ b/tests/tests_shellcheck.sh @@ -7,7 +7,6 @@ # Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com - echo "START Shellcheck" echo "=================================" find . -type f -name "*.sh" -not -path "./shunit2-2.1.6/*" -exec shellcheck --shell=bash --exclude=SC2154,SC2034 {} \; From 579e5ca46d3a480589c3ed1bcf570b9cb115ce0e Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 14 Mar 2018 21:10:30 +0000 Subject: [PATCH 033/108] Added Shellcheck to travis --- .travis.yml | 3 ++- tests/tests_shellcheck.sh | 15 +++++++++++++++ 2 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 tests/tests_shellcheck.sh diff --git a/.travis.yml b/.travis.yml index c52f1af36..24af341a5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -30,8 +30,9 @@ addons: - libstdc++6:i386 - net-tools - iproute2 + - shellcheck script: - - bash tests/tests_jc2server.sh - bash tests/tests_ts3server.sh + - bash tests/tests_shellcheck.sh \ No newline at end of file diff --git a/tests/tests_shellcheck.sh b/tests/tests_shellcheck.sh new file mode 100644 index 000000000..8970de676 --- /dev/null +++ b/tests/tests_shellcheck.sh @@ -0,0 +1,15 @@ +#!/bin/bash +# Project: Game Server Managers - LinuxGSM +# Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2017 Daniel Gibbs +# Purpose: TravisCI Tests: Shellcheck | Linux Game Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki +# Website: https://gameservermanagers.com + +echo "START Shellcheck" +echo "=================================" +find . -type f -name "*.sh" -not -path "./shunit2-2.1.6/*" -exec shellcheck --shell=bash --exclude=SC2154,SC2034 {} \; +find . -type f -name "*.cfg" -not -path "./shunit2-2.1.6/*" -exec shellcheck --shell=bash --exclude=SC2154,SC2034 {} \; +echo "=================================" +echo "END Shellcheck" \ No newline at end of file From bd3e088fb213cad0e7144f86be361632f77c789f Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 14 Mar 2018 22:05:18 +0000 Subject: [PATCH 034/108] SC2012 --- lgsm/functions/info_distro.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/info_distro.sh b/lgsm/functions/info_distro.sh index 661123a80..497b6bfd1 100644 --- a/lgsm/functions/info_distro.sh +++ b/lgsm/functions/info_distro.sh @@ -124,7 +124,7 @@ if [ -d "${backupdir}" ]; then # number of backups. backupcount=$(find "${backupdir}"/*.tar.gz | wc -l) # most recent backup. - lastbackup=$(ls -t "${backupdir}"/*.tar.gz | head -1) + lastbackup=$(find "${backupdir}"/*.tar.gz | head -1) # date of most recent backup. lastbackupdate=$(date -r "${lastbackup}") # no of days since last backup. From cb38c8d4ed0d2c09aa41b08bbb623e0717f1546d Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 14 Mar 2018 22:07:31 +0000 Subject: [PATCH 035/108] SC2086 --- lgsm/functions/command_dev_detect_glibc.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/command_dev_detect_glibc.sh b/lgsm/functions/command_dev_detect_glibc.sh index 4fb472a94..eb1249a95 100644 --- a/lgsm/functions/command_dev_detect_glibc.sh +++ b/lgsm/functions/command_dev_detect_glibc.sh @@ -28,8 +28,8 @@ elif [ -f "${serverfiles}" ]; then fi echo "" -files=$(find ${serverfiles} | wc -l) -find ${serverfiles} -type f -print0 | +files=$(find "${serverfiles}" | wc -l) +find "${serverfiles}" -type f -print0 | while IFS= read -r -d $'\0' line; do glibcversion=$(objdump -T "${line}" 2>/dev/null|grep -oP "GLIBC[^ ]+" |grep -v GLIBCXX|sort|uniq|sort -r --version-sort| head -n 1) if [ "${glibcversion}" ]; then From d93519d57256cf537c7121060671169dded5696d Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 14 Mar 2018 22:11:02 +0000 Subject: [PATCH 036/108] SC2115 --- lgsm/functions/command_mods_update.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index 50c4b611f..a5f513997 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -27,7 +27,7 @@ fn_remove_cfg_files(){ echo -e " * serverfiles/${filetopreserve}" # 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}" + rm -r "${extractdir:?}/${filetopreserve}" # 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" From 56630ab66d42e0182e6090339f9f55740d796ed8 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 14 Mar 2018 22:11:37 +0000 Subject: [PATCH 037/108] SC2086 --- lgsm/functions/command_mods_update.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_mods_update.sh b/lgsm/functions/command_mods_update.sh index a5f513997..7b71194f5 100644 --- a/lgsm/functions/command_mods_update.sh +++ b/lgsm/functions/command_mods_update.sh @@ -72,7 +72,7 @@ sleep 1 # List all installed mods and apply update # Reset line value installedmodsline="1" -while [ ${installedmodsline} -le ${installedmodscount} ]; do +while [ "${installedmodsline}" -le "${installedmodscount}" ]; do currentmod="$(sed "${installedmodsline}q;d" "${modsinstalledlistfullpath}")" if [ -n "${currentmod}" ]; then fn_mod_get_info From d7eada1a318653d5d7cdc4962f80bada867126b4 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 14 Mar 2018 22:12:44 +0000 Subject: [PATCH 038/108] SC2006 --- lgsm/functions/mods_core.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index fbf2c0b29..9ba3736e7 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -43,7 +43,7 @@ fn_mod_lowercase(){ fileswc=$(find "${extractdir}" -depth | wc -l) echo -en "\r" while read -r src; do - dst=`dirname "${src}"`/`basename "${src}" | tr '[A-Z]' '[a-z]'` + dst=$(dirname "${src}"`/`basename "${src}" | tr '[A-Z]' '[a-z]') if [ "${src}" != "${dst}" ] then [ ! -e "${dst}" ] && mv -T "${src}" "${dst}" || echo "${src} was not renamed" From 12c0ac6adb46a617c7248e43506fa14079023ceb Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 14 Mar 2018 22:14:26 +0000 Subject: [PATCH 039/108] SC2086 --- lgsm/functions/mods_core.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 9ba3736e7..b8d84b745 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -219,7 +219,7 @@ fn_mods_installed_list(){ moddescriptionmaxlength="0" modcommandmaxlength="0" # Loop through every line of the installed mods list ${modsinstalledlistfullpath} - while [ ${installedmodsline} -le ${installedmodscount} ]; do + while [ "${installedmodsline}" -le "${installedmodscount}" ]; do currentmod="$(sed "${installedmodsline}q;d" "${modsinstalledlistfullpath}")" # Get mod info to make sure mod exists fn_mod_get_info From a9c588fe325010746af0bf24f8b4923bc6e67cda Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 14 Mar 2018 22:19:39 +0000 Subject: [PATCH 040/108] SC2066 --- lgsm/functions/core_dl.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/core_dl.sh b/lgsm/functions/core_dl.sh index f45b8938d..1230cac4a 100644 --- a/lgsm/functions/core_dl.sh +++ b/lgsm/functions/core_dl.sh @@ -240,7 +240,7 @@ fn_update_function(){ # Defines curl path curlpath=$(command -v curl 2>/dev/null) -if [ "$(basename ${curlpath})" != "curl" ]; then +if [ "$(basename "${curlpath}")" != "curl" ]; then echo "[ FAIL ] Curl is not installed" exit 1 fi \ No newline at end of file From 0193817b7982c906ca1a0c88a80a5164bfd08b6e Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 14 Mar 2018 22:21:22 +0000 Subject: [PATCH 041/108] SC2164 --- lgsm/functions/compress_unreal2_maps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/compress_unreal2_maps.sh b/lgsm/functions/compress_unreal2_maps.sh index 2b0f35951..94907d596 100644 --- a/lgsm/functions/compress_unreal2_maps.sh +++ b/lgsm/functions/compress_unreal2_maps.sh @@ -22,7 +22,7 @@ if ! fn_prompt_yn "Start compression?" Y; then fi mkdir -pv "${compressedmapsdir}" > /dev/null 2>&1 rm -rfv "${serverfiles}/Maps/"*.ut2.uz2 -cd "${systemdir}" +cd "${systemdir}" || exit for map in "${serverfiles}/Maps/"*; do ./ucc-bin compress "${map}" --nohomedir done From 3300ddc3e9ec5fae5c7508fa36320b97d93c7066 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 14 Mar 2018 22:26:12 +0000 Subject: [PATCH 042/108] SC2196 --- lgsm/functions/update_minecraft.sh | 4 ++-- lgsm/functions/update_mumble.sh | 4 ++-- lgsm/functions/update_ts3.sh | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/lgsm/functions/update_minecraft.sh b/lgsm/functions/update_minecraft.sh index 5fb3fa648..9050109d4 100644 --- a/lgsm/functions/update_minecraft.sh +++ b/lgsm/functions/update_minecraft.sh @@ -47,7 +47,7 @@ fn_update_currentbuild(){ fi # Get current build from logs - currentbuild=$(cat "${serverfiles}/logs/latest.log" 2> /dev/null | grep version | egrep -o '((\.)?[0-9]{1,3}){1,3}\.[0-9]{1,3}') + currentbuild=$(cat "${serverfiles}/logs/latest.log" 2> /dev/null | grep version | grep -Eo '((\.)?[0-9]{1,3}){1,3}\.[0-9]{1,3}') if [ -z "${currentbuild}" ]; then fn_print_error_nl "Checking for update: mojang.com: Current build version not found" fn_script_log_error "Checking for update: mojang.com: Current build version not found" @@ -58,7 +58,7 @@ fn_update_currentbuild(){ command_stop.sh exitbypass=1 command_start.sh - currentbuild=$(cat "${serverfiles}/logs/latest.log" 2> /dev/null | grep version | egrep -o '((\.)?[0-9]{1,3}){1,3}\.[0-9]{1,3}') + currentbuild=$(cat "${serverfiles}/logs/latest.log" 2> /dev/null | grep version | grep -Eo '((\.)?[0-9]{1,3}){1,3}\.[0-9]{1,3}') if [ -z "${currentbuild}" ]; then fn_print_fail_nl "Checking for update: mojang.com: Current build version still not found" fn_script_log_fatal "Checking for update: mojang.com: Current build version still not found" diff --git a/lgsm/functions/update_mumble.sh b/lgsm/functions/update_mumble.sh index 765710f08..549bb4d36 100644 --- a/lgsm/functions/update_mumble.sh +++ b/lgsm/functions/update_mumble.sh @@ -49,7 +49,7 @@ fn_update_mumble_currentbuild(){ fi # Get current build from logs - currentbuild=$(cat "${consolelogdir}"/"${servicename}"-console.log 2> /dev/null | sort | egrep 'Murmur ((\.)?[0-9]{1,3}){1,3}\.[0-9]{1,3}' | awk '{print $4}') + currentbuild=$(cat "${consolelogdir}"/"${servicename}"-console.log 2> /dev/null | sort | grep -E 'Murmur ((\.)?[0-9]{1,3}){1,3}\.[0-9]{1,3}' | awk '{print $4}') if [ -z "${currentbuild}" ]; then fn_print_error_nl "Checking for update: GitHub: Current build version not found" fn_script_log_error "Checking for update: GitHub: Current build version not found" @@ -60,7 +60,7 @@ fn_update_mumble_currentbuild(){ command_stop.sh exitbypass=1 command_start.sh - currentbuild=$(cat "${consolelogdir}"/"${servicename}"-console.log 2> /dev/null | sort | egrep 'Murmur ((\.)?[0-9]{1,3}){1,3}\.[0-9]{1,3}' | awk '{print $4}') + currentbuild=$(cat "${consolelogdir}"/"${servicename}"-console.log 2> /dev/null | sort | grep -E 'Murmur ((\.)?[0-9]{1,3}){1,3}\.[0-9]{1,3}' | awk '{print $4}') if [ -z "${currentbuild}" ]; then fn_print_fail_nl "Checking for update: GitHub: Current build version still not found" fn_script_log_fatal "Checking for update: GitHub: Current build version still not found" diff --git a/lgsm/functions/update_ts3.sh b/lgsm/functions/update_ts3.sh index e2f2691ef..96e941118 100644 --- a/lgsm/functions/update_ts3.sh +++ b/lgsm/functions/update_ts3.sh @@ -48,7 +48,7 @@ fn_update_ts3_currentbuild(){ fi # Get current build from logs - currentbuild=$(cat $(find ./* -name 'ts3server*_0.log' 2> /dev/null | sort | egrep -E -v '${rootdir}/.ts3version' | tail -1) | egrep -o 'TeamSpeak 3 Server ((\.)?[0-9]{1,3}){1,3}\.[0-9]{1,3}' | egrep -o '((\.)?[0-9]{1,3}){1,3}\.[0-9]{1,3}' | sort -V | tail -1) + currentbuild=$(cat $(find ./* -name 'ts3server*_0.log' 2> /dev/null | sort | grep -Ev '${rootdir}/.ts3version' | 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}' | sort -V | tail -1) if [ -z "${currentbuild}" ]; then fn_print_error_nl "Checking for update: teamspeak.com: Current build version not found" fn_script_log_error "Checking for update: teamspeak.com: Current build version not found" @@ -59,7 +59,7 @@ fn_update_ts3_currentbuild(){ command_stop.sh exitbypass=1 command_start.sh - currentbuild=$(cat $(find ./* -name 'ts3server*_0.log' 2> /dev/null | sort | egrep -E -v '${rootdir}/.ts3version' | tail -1) | egrep -o 'TeamSpeak 3 Server ((\.)?[0-9]{1,3}){1,3}\.[0-9]{1,3}' | egrep -o '((\.)?[0-9]{1,3}){1,3}\.[0-9]{1,3}') + currentbuild=$(cat $(find ./* -name 'ts3server*_0.log' 2> /dev/null | sort | grep -Ev '${rootdir}/.ts3version' | 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 [ -z "${currentbuild}" ]; then fn_print_fail_nl "Checking for update: teamspeak.com: Current build version still not found" fn_script_log_fatal "Checking for update: teamspeak.com: Current build version still not found" @@ -112,7 +112,7 @@ fn_update_ts3_availablebuild_legacy(){ # Gets latest build info. # Grabs all version numbers but not in correct order. - wget "http://dl.4players.de/ts/releases/?C=M;O=D" -q -O -| grep -i dir | egrep -o '.*\/<\/a>' | egrep -o '[0-9\.?]+'|uniq > "${tmpdir}/.ts3_version_numbers_unsorted.tmp" + wget "http://dl.4players.de/ts/releases/?C=M;O=D" -q -O -| grep -i dir | grep -Eo '.*\/<\/a>' | grep -Eo '[0-9\.?]+'|uniq > "${tmpdir}/.ts3_version_numbers_unsorted.tmp" # Sort version numbers cat "${tmpdir}/.ts3_version_numbers_unsorted.tmp" | sort -r --version-sort -o "${tmpdir}/.ts3_version_numbers_sorted.tmp" From a3bd278272e462a2f2def63360fcc0931db36db3 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 14 Mar 2018 22:27:56 +0000 Subject: [PATCH 043/108] SC2162 --- lgsm/functions/update_ts3.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/update_ts3.sh b/lgsm/functions/update_ts3.sh index 96e941118..930344d17 100644 --- a/lgsm/functions/update_ts3.sh +++ b/lgsm/functions/update_ts3.sh @@ -118,7 +118,7 @@ fn_update_ts3_availablebuild_legacy(){ cat "${tmpdir}/.ts3_version_numbers_unsorted.tmp" | sort -r --version-sort -o "${tmpdir}/.ts3_version_numbers_sorted.tmp" # Finds directory with most recent server version. - while read ts3_version_number; do + while read -r ts3_version_number; do wget --spider -q "http://dl.4players.de/ts/releases/${ts3_version_number}/teamspeak3-server_linux_${ts3arch}-${ts3_version_number}.tar.bz2" if [ $? -eq 0 ]; then availablebuild="${ts3_version_number}" From c4bef413672cfe0b58e35bc3a93c33bdf83570ee Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 14 Mar 2018 22:29:43 +0000 Subject: [PATCH 044/108] SC2162 --- lgsm/functions/command_ts3_server_pass.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_ts3_server_pass.sh b/lgsm/functions/command_ts3_server_pass.sh index 0525a283c..e57f33efa 100644 --- a/lgsm/functions/command_ts3_server_pass.sh +++ b/lgsm/functions/command_ts3_server_pass.sh @@ -19,7 +19,7 @@ fn_serveradmin_password_prompt(){ echo Exiting; exit fi fn_script_log_info "Initiating ${gamename} ServerAdmin password change" - read -p "Enter new password : " newpassword + read -rp "Enter new password : " newpassword } fn_serveradmin_password_set(){ From 4b577c4e587a6030d30adeec35c386cf1a106417 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 14 Mar 2018 22:30:10 +0000 Subject: [PATCH 045/108] SC2046 --- lgsm/functions/check_root.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/check_root.sh b/lgsm/functions/check_root.sh index 6efdf34f4..0b986ef88 100644 --- a/lgsm/functions/check_root.sh +++ b/lgsm/functions/check_root.sh @@ -7,7 +7,7 @@ local commandname="CHECK" local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" -if [ $(whoami) = "root" ]; then +if [ "$(whoami)" = "root" ]; then fn_print_fail_nl "Do NOT run this script as root!" if [ -d "${lgsmlogdir}" ]; then fn_script_log_fatal "${selfname} attempted to run as root." From a4140cbca654740f84c05fc8bd6cb97781c46d91 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 14 Mar 2018 22:31:07 +0000 Subject: [PATCH 046/108] SC2046 --- lgsm/functions/command_stop.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_stop.sh b/lgsm/functions/command_stop.sh index 97fdf6566..a5b13925b 100644 --- a/lgsm/functions/command_stop.sh +++ b/lgsm/functions/command_stop.sh @@ -226,7 +226,7 @@ fn_stop_ark(){ 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 + if [ "${pid}" -gt 1 ]&&[ "${pid}" -le $(cat "/proc/sys/kernel/pid_max") ]; then fn_print_dots "Process still bound. Awaiting graceful exit: ${pidcheck}" sleep 1 else From bd59b54ac4b42b23e58bdb2c9990b183fb57a1d1 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 14 Mar 2018 22:32:57 +0000 Subject: [PATCH 047/108] SC2046 --- lgsm/functions/install_config.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/install_config.sh b/lgsm/functions/install_config.sh index b7939d290..261339992 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -62,7 +62,7 @@ fn_set_config_vars(){ fn_script_log_info "changing hostname." sleep 1 - if [ $(grep SERVERNAME=SERVERNAME \"${lgsmdir}/config-default/config-game/${config}\" 2>/dev/null) ]; then + if [ "$(grep SERVERNAME=SERVERNAME \"${lgsmdir}/config-default/config-game/${config}\" 2>/dev/null)" ]; then sed -i "s/SERVERNAME=SERVERNAME/SERVERNAME=${servername}/g" "${servercfgfullpath}" else sed -i "s/SERVERNAME/${servername}/g" "${servercfgfullpath}" From 1077ab2abf12010035f25a8af3072ec1ac5cc1b0 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 14 Mar 2018 22:33:24 +0000 Subject: [PATCH 048/108] SC2164 --- lgsm/functions/update_steamcmd.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/update_steamcmd.sh b/lgsm/functions/update_steamcmd.sh index e1925cc4c..bda7a72a7 100644 --- a/lgsm/functions/update_steamcmd.sh +++ b/lgsm/functions/update_steamcmd.sh @@ -17,7 +17,7 @@ fn_update_steamcmd_dl(){ fn_print_ok_nl "SteamCMD" fn_script_log_info "Starting SteamCMD" - cd "${steamcmddir}" + cd "${steamcmddir}" || exit # Detects if unbuffer command is available for 32 bit distributions only. info_distro.sh From 2a0d4562f1af2edb9a107be3a1dd12b6fae8528a Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 14 Mar 2018 22:33:55 +0000 Subject: [PATCH 049/108] SC2162 --- lgsm/functions/update_steamcmd.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/update_steamcmd.sh b/lgsm/functions/update_steamcmd.sh index bda7a72a7..e2cf4d7c3 100644 --- a/lgsm/functions/update_steamcmd.sh +++ b/lgsm/functions/update_steamcmd.sh @@ -157,7 +157,7 @@ fn_update_steamcmd_check(){ fi # Set branch for updateinfo - IFS=' ' read -a branchsplits <<< "${branch}" + IFS=' ' read -ra branchsplits <<< "${branch}" if [ "${#branchsplits[@]}" -gt 1 ]; then branchname="${branchsplits[1]}" else From 0b6d5dfb2800c0424c38fd71d07e92ff32168a2f Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 14 Mar 2018 22:34:28 +0000 Subject: [PATCH 050/108] SC2162 --- lgsm/functions/install_gslt.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/install_gslt.sh b/lgsm/functions/install_gslt.sh index 918753d74..2d1dfd1ed 100644 --- a/lgsm/functions/install_gslt.sh +++ b/lgsm/functions/install_gslt.sh @@ -29,7 +29,7 @@ if [ -z "${autoinstall}" ]; then if [ "${gamename}" != "Tower Unite" ]; then echo "Enter token below (Can be blank)." echo -n "GSLT TOKEN: " - read token + read -r token if ! grep -q "^gslt=" "${configdirserver}/${servicename}.cfg" > /dev/null 2>&1; then echo -e "\ngslt=\"${token}\"" >> "${configdirserver}/${servicename}.cfg" else From 66151c574eedeb982b45763e8d4fcf5f03495ce3 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 14 Mar 2018 22:35:06 +0000 Subject: [PATCH 051/108] SC2086 --- lgsm/functions/core_exit.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/core_exit.sh b/lgsm/functions/core_exit.sh index 02b471c78..e7b65f8c2 100644 --- a/lgsm/functions/core_exit.sh +++ b/lgsm/functions/core_exit.sh @@ -26,12 +26,12 @@ elif [ -n "${exitcode}" ]&&[ "${exitcode}" != "0" ]; then fn_exit_dev_debug # remove trap. trap - INT - exit ${exitcode} + exit "${exitcode}" else exitcode=0 fn_script_log_pass "${function_selfname} exiting with code: ${exitcode}" fn_exit_dev_debug # remove trap. trap - INT - exit ${exitcode} + exit "${exitcode}" fi From ec855898b901e2265b6cb90fb314554a1388ac3b Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 14 Mar 2018 22:35:43 +0000 Subject: [PATCH 052/108] SC2162 --- lgsm/functions/install_dst_token.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/install_dst_token.sh b/lgsm/functions/install_dst_token.sh index a350577e8..38bb872da 100644 --- a/lgsm/functions/install_dst_token.sh +++ b/lgsm/functions/install_dst_token.sh @@ -30,7 +30,7 @@ if [ -z "${autoinstall}" ]; then if [ "${overwritetoken}" == "true" ]; then echo "Once you have the cluster token, enter it below" echo -n "Cluster Token: " - read token + read -r token mkdir -pv "${clustercfgdir}" echo "${token}" > "${clustercfgdir}/cluster_token.txt" if [ -f "${clustercfgdir}/cluster_token.txt" ]; then From fe16698ec4ecef7c144d9c703f45b47a792f0115 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 14 Mar 2018 22:36:25 +0000 Subject: [PATCH 053/108] SC2046 --- lgsm/functions/command_validate.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_validate.sh b/lgsm/functions/command_validate.sh index 09d31a436..e15a67c0a 100644 --- a/lgsm/functions/command_validate.sh +++ b/lgsm/functions/command_validate.sh @@ -22,7 +22,7 @@ fn_validation(){ cd "${steamcmddir}" # Detects if unbuffer command is available for 32 bit distributions only. info_distro.sh - if [ $(command -v stdbuf) ]&&[ "${arch}" != "x86_64" ]; then + if [ "$(command -v stdbuf)" ]&&[ "${arch}" != "x86_64" ]; then unbuffer="stdbuf -i0 -o0 -e0" fi From 20c33da6ba9a8b4266ed03ad5d9ae7458c4806ed Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 14 Mar 2018 22:37:32 +0000 Subject: [PATCH 054/108] SC2115 --- lgsm/functions/command_mods_remove.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index df24a2675..8ed26abfb 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -68,7 +68,7 @@ while [ "${modfileline}" -le "${modsfilelistsize}" ]; do # If file or directory exists, then remove it if [ -f "${modinstalldir}/${currentfileremove}" ]||[ -d "${modinstalldir}/${currentfileremove}" ]; then - rm -rf "${modinstalldir}/${currentfileremove}" + rm -rf "${modinstalldir:?}/${currentfileremove}" ((exitcode=$?)) if [ ${exitcode} -ne 0 ]; then fn_script_log_fatal "Removing ${modinstalldir}/${currentfileremove}" From 8ce79afc75f182bdd540ad3d68be4dddeb7a50ba Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 14 Mar 2018 22:38:37 +0000 Subject: [PATCH 055/108] SC2059 --- lgsm/functions/command_mods_remove.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index 8ed26abfb..71e57a1cb 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -78,7 +78,7 @@ while [ "${modfileline}" -le "${modsfilelistsize}" ]; do fi fi tput rc; tput el - printf "removing ${modprettyname} ${modfileline} / ${modsfilelistsize} : ${currentfileremove}..." + echo "removing ${modprettyname} ${modfileline} / ${modsfilelistsize} : ${currentfileremove}..." ((modfileline++)) done if [ ${exitcode} -ne 0 ]; then From 2876befb315d2fb0a96a9770d4d7a42678546b98 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 14 Mar 2018 22:39:49 +0000 Subject: [PATCH 056/108] SC2086 SC2162 --- lgsm/functions/command_dev_detect_deps.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/command_dev_detect_deps.sh b/lgsm/functions/command_dev_detect_deps.sh index 8e7e18a6c..140b7013c 100644 --- a/lgsm/functions/command_dev_detect_deps.sh +++ b/lgsm/functions/command_dev_detect_deps.sh @@ -20,7 +20,7 @@ elif [ "$(command -v readelf 2>/dev/null)" ]; then else echo "readelf/eu-readelf not installed" fi -files=$(find ${serverfiles} | wc -l) +files=$(find "${serverfiles}" | wc -l) find "${serverfiles}" -type f -print0 | while IFS= read -r -d $'\0' line; do if [ "${readelf}" == "eu-readelf" ]; then @@ -34,7 +34,7 @@ done sort "${tmpdir}/.depdetect_readelf" |uniq >"${tmpdir}/.depdetect_readelf_uniq" -while read lib; do +while read -r lib; do if [ "${lib}" == "libm.so.6" ]||[ "${lib}" == "libc.so.6" ]||[ "${lib}" == "libtcmalloc_minimal.so.4" ]||[ "${lib}" == "libpthread.so.0" ]||[ "${lib}" == "libdl.so.2" ]||[ "${lib}" == "libnsl.so.1" ]||[ "${lib}" == "libgcc_s.so.1" ]||[ "${lib}" == "librt.so.1" ]||[ "${lib}" == "ld-linux.so.2" ]; then echo "glibc.i686" >> "${tmpdir}/.depdetect_centos_list" echo "lib32gcc1" >> "${tmpdir}/.depdetect_ubuntu_list" From 9131f9e65447bd06c59f67fb08e92b52b4481851 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 14 Mar 2018 22:41:03 +0000 Subject: [PATCH 057/108] SC2086 --- lgsm/functions/command_dev_detect_ldd.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/command_dev_detect_ldd.sh b/lgsm/functions/command_dev_detect_ldd.sh index d80ad0895..c250559eb 100644 --- a/lgsm/functions/command_dev_detect_ldd.sh +++ b/lgsm/functions/command_dev_detect_ldd.sh @@ -26,11 +26,11 @@ files=$(find "${serverfiles}" | wc -l) find "${serverfiles}" -type f -print0 | while IFS= read -r -d $'\0' line; do #ldd -v $line 2>/dev/null|grep "=>" >>"${tmpdir}/detect_ldd.tmp" - if [ -n "$(ldd ${line} 2>/dev/null |grep -v "not a dynamic executable")" ]; then + if [ -n "$(ldd "${line}" 2>/dev/null |grep -v "not a dynamic executable")" ]; then echo "${line}" >> "${tmpdir}/detect_ldd.tmp" ldd "${line}" 2>/dev/null |grep -v "not a dynamic executable" >> "${tmpdir}/detect_ldd.tmp" - if [ -n "$(ldd $line 2>/dev/null |grep -v "not a dynamic executable"|grep "not found")" ]; then + if [ -n "$(ldd "${line}" 2>/dev/null |grep -v "not a dynamic executable"|grep "not found")" ]; then echo "${line}" >> "${tmpdir}/detect_ldd_not_found.tmp" ldd "${line}" 2>/dev/null |grep -v "not a dynamic executable"|grep "not found" >> "${tmpdir}/detect_ldd_not_found.tmp" fi From 37f568ea471a9f00d0316afe9c7aeb03775bbdd0 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 14 Mar 2018 22:42:58 +0000 Subject: [PATCH 058/108] SC2027 --- lgsm/functions/logs.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/logs.sh b/lgsm/functions/logs.sh index 927185ecf..20fc32fe1 100644 --- a/lgsm/functions/logs.sh +++ b/lgsm/functions/logs.sh @@ -42,8 +42,8 @@ if [ $(find "${lgsmlogdir}"/ -type f -mtime +"${logdays}"|wc -l) -ne "0" ]; then scriptcount="0" ; consolecount="0" ; gamecount="0" ; srcdscount="0" ; smcount="0" ; ulxcount="0" ; darkrpcount="0" ; legacycount="0" sleep 1 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" + 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 find "${lgsmlogdir}"/ -type f -mtime +"${logdays}"| tee >> "${lgsmlog}" From d08b1862a41148f736e9b3fbb59cf2739f9be4bd Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 14 Mar 2018 23:06:49 +0000 Subject: [PATCH 059/108] testing jobs --- .travis.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 24af341a5..72d1f0e25 100644 --- a/.travis.yml +++ b/.travis.yml @@ -32,7 +32,9 @@ addons: - iproute2 - shellcheck -script: - - bash tests/tests_jc2server.sh - - bash tests/tests_ts3server.sh - - bash tests/tests_shellcheck.sh \ No newline at end of file +jobs: + include: + - stage: jobs + script: bash tests/tests_jc2server.sh + script: bash tests/tests_ts3server.sh + script: bash tests/tests_shellcheck.sh \ No newline at end of file From 4a53fb0ade1799dccd48559fb135a6143236cd72 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 14 Mar 2018 23:12:53 +0000 Subject: [PATCH 060/108] test --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 72d1f0e25..4645399ce 100644 --- a/.travis.yml +++ b/.travis.yml @@ -36,5 +36,5 @@ jobs: include: - stage: jobs script: bash tests/tests_jc2server.sh + - # stage name not required, will continue to use `test` script: bash tests/tests_ts3server.sh - script: bash tests/tests_shellcheck.sh \ No newline at end of file From 706bf40339f0142c5950a06bedfd2100510abb30 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 14 Mar 2018 23:15:53 +0000 Subject: [PATCH 061/108] added language --- .travis.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 4645399ce..2b963b62d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -35,6 +35,9 @@ addons: jobs: include: - stage: jobs + language: bash script: bash tests/tests_jc2server.sh - - # stage name not required, will continue to use `test` + - # stage name not required script: bash tests/tests_ts3server.sh + - # stage name not required + script: bash tests/tests_shellcheck.sh \ No newline at end of file From 687e77662bb4100ee549d499afbfaf041f2dbab4 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 14 Mar 2018 23:25:37 +0000 Subject: [PATCH 062/108] Removed Language --- .travis.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 2b963b62d..1ae96fc9c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -35,7 +35,6 @@ addons: jobs: include: - stage: jobs - language: bash script: bash tests/tests_jc2server.sh - # stage name not required script: bash tests/tests_ts3server.sh From 4bafd924bc9d0a590e84f5178ec1ee7a8b12398a Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 14 Mar 2018 23:25:53 +0000 Subject: [PATCH 063/108] Updated Messages --- tests/tests_jc2server.sh | 4 ++-- tests/tests_shellcheck.sh | 20 +++++++++++++++++--- tests/tests_ts3server.sh | 4 ++-- 3 files changed, 21 insertions(+), 7 deletions(-) diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index c0d6d0b19..d92009913 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -2,7 +2,7 @@ # Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs # License: MIT License, Copyright (c) 2017 Daniel Gibbs -# Purpose: TravisCI Tests: Just Cause 2 | Linux Game Server Management Script +# Purpose: Travis CI Tests: Just Cause 2 | Linux Game Server Management Script # Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors # Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com @@ -460,7 +460,7 @@ fn_test_result_fail(){ } echo "=================================" -echo "TravisCI Tests" +echo "Travis CI Tests" echo "Linux Game Server Manager" echo "by Daniel Gibbs" echo "https://gameservermanagers.com" diff --git a/tests/tests_shellcheck.sh b/tests/tests_shellcheck.sh index 8970de676..0a272df89 100644 --- a/tests/tests_shellcheck.sh +++ b/tests/tests_shellcheck.sh @@ -2,14 +2,28 @@ # Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs # License: MIT License, Copyright (c) 2017 Daniel Gibbs -# Purpose: TravisCI Tests: Shellcheck | Linux Game Server Management Script +# Purpose: Travis CI Tests: Shellcheck | Linux Game Server Management Script # Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors # Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com -echo "START Shellcheck" echo "=================================" +echo "Travis CI Tests" +echo "Linux Game Server Manager" +echo "by Daniel Gibbs" +echo "https://gameservermanagers.com" +echo "=================================" +echo "" +echo "=================================" +echo "Bash Analysis Tests" +echo "Using: Shellcheck" +echo "Testing Branch: $TRAVIS_BRANCH" +echo "=================================" +echo "" find . -type f -name "*.sh" -not -path "./shunit2-2.1.6/*" -exec shellcheck --shell=bash --exclude=SC2154,SC2034 {} \; find . -type f -name "*.cfg" -not -path "./shunit2-2.1.6/*" -exec shellcheck --shell=bash --exclude=SC2154,SC2034 {} \; +echo "" echo "=================================" -echo "END Shellcheck" \ No newline at end of file +echo "Bash Analysis Tests - Complete!" +echo "Using: Shellcheck" +echo "=================================" \ No newline at end of file diff --git a/tests/tests_ts3server.sh b/tests/tests_ts3server.sh index 7f327dc13..fa3be9788 100644 --- a/tests/tests_ts3server.sh +++ b/tests/tests_ts3server.sh @@ -2,7 +2,7 @@ # Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs # License: MIT License, Copyright (c) 2017 Daniel Gibbs -# Purpose: TravisCI Tests: Teamspeak 3 | Linux Game Server Management Script +# Purpose: Travis CI Tests: Teamspeak 3 | Linux Game Server Management Script # Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors # Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com @@ -460,7 +460,7 @@ fn_test_result_fail(){ } echo "=================================" -echo "TravisCI Tests" +echo "Travis CI Tests" echo "Linux Game Server Manager" echo "by Daniel Gibbs" echo "https://gameservermanagers.com" From 77f1f9ea23f17ad50c4b8495ce3ddd695fd52546 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 14 Mar 2018 23:28:10 +0000 Subject: [PATCH 064/108] changed to new domain linuxgsm.com --- CONTRIBUTING.md | 2 +- .../config-lgsm/bb2server/_default.cfg | 2 +- .../config-lgsm/bmdmserver/_default.cfg | 2 +- .../config-lgsm/boserver/_default.cfg | 2 +- .../config-lgsm/csgoserver/_default.cfg | 2 +- .../config-lgsm/cssserver/_default.cfg | 2 +- .../config-lgsm/emserver/_default.cfg | 2 +- .../config-lgsm/gmodserver/_default.cfg | 2 +- .../config-lgsm/insserver/_default.cfg | 2 +- .../config-lgsm/nmrihserver/_default.cfg | 2 +- .../config-lgsm/tf2server/_default.cfg | 2 +- .../config-lgsm/tuserver/_default.cfg | 2 +- .../config-lgsm/zpsserver/_default.cfg | 2 +- lgsm/functions/alert.sh | 2 +- lgsm/functions/alert_discord.sh | 2 +- lgsm/functions/alert_email.sh | 2 +- lgsm/functions/alert_ifttt.sh | 2 +- lgsm/functions/alert_mailgun.sh | 2 +- lgsm/functions/alert_pushbullet.sh | 2 +- lgsm/functions/alert_pushover.sh | 2 +- lgsm/functions/check.sh | 2 +- lgsm/functions/check_config.sh | 2 +- lgsm/functions/check_deps.sh | 2 +- lgsm/functions/check_executable.sh | 2 +- lgsm/functions/check_glibc.sh | 2 +- lgsm/functions/check_ip.sh | 10 +++++----- lgsm/functions/check_logs.sh | 2 +- lgsm/functions/check_permissions.sh | 2 +- lgsm/functions/check_root.sh | 2 +- lgsm/functions/check_status.sh | 2 +- lgsm/functions/check_steamcmd.sh | 2 +- lgsm/functions/check_system_dir.sh | 2 +- lgsm/functions/check_system_requirements.sh | 2 +- lgsm/functions/check_tmuxception.sh | 2 +- lgsm/functions/command_backup.sh | 2 +- lgsm/functions/command_console.sh | 2 +- lgsm/functions/command_debug.sh | 2 +- lgsm/functions/command_details.sh | 2 +- lgsm/functions/command_dev_debug.sh | 2 +- lgsm/functions/command_dev_detect_deps.sh | 2 +- lgsm/functions/command_dev_detect_glibc.sh | 2 +- lgsm/functions/command_dev_detect_ldd.sh | 2 +- lgsm/functions/command_fastdl.sh | 2 +- lgsm/functions/command_install.sh | 2 +- lgsm/functions/command_install_resources_mta.sh | 2 +- lgsm/functions/command_mods_install.sh | 2 +- lgsm/functions/command_mods_remove.sh | 2 +- lgsm/functions/command_mods_update.sh | 2 +- lgsm/functions/command_monitor.sh | 2 +- lgsm/functions/command_postdetails.sh | 2 +- lgsm/functions/command_restart.sh | 2 +- lgsm/functions/command_start.sh | 16 ++++++++-------- lgsm/functions/command_stop.sh | 2 +- lgsm/functions/command_test_alert.sh | 2 +- lgsm/functions/command_ts3_server_pass.sh | 2 +- lgsm/functions/command_update.sh | 2 +- lgsm/functions/command_update_functions.sh | 2 +- lgsm/functions/command_update_linuxgsm.sh | 2 +- lgsm/functions/command_validate.sh | 2 +- lgsm/functions/command_wipe.sh | 2 +- lgsm/functions/compress_unreal2_maps.sh | 2 +- lgsm/functions/compress_ut99_maps.sh | 2 +- lgsm/functions/core_dl.sh | 2 +- lgsm/functions/core_exit.sh | 2 +- lgsm/functions/core_functions.sh | 2 +- lgsm/functions/core_getopt.sh | 4 ++-- lgsm/functions/core_legacy.sh | 2 +- lgsm/functions/core_messages.sh | 2 +- lgsm/functions/core_trap.sh | 2 +- lgsm/functions/fix.sh | 2 +- lgsm/functions/fix_ark.sh | 2 +- lgsm/functions/fix_arma3.sh | 2 +- lgsm/functions/fix_coduo.sh | 2 +- lgsm/functions/fix_csgo.sh | 2 +- lgsm/functions/fix_dst.sh | 2 +- lgsm/functions/fix_ges.sh | 2 +- lgsm/functions/fix_glibc.sh | 2 +- lgsm/functions/fix_ins.sh | 2 +- lgsm/functions/fix_kf.sh | 2 +- lgsm/functions/fix_kf2.sh | 2 +- lgsm/functions/fix_mta.sh | 2 +- lgsm/functions/fix_ro.sh | 2 +- lgsm/functions/fix_rust.sh | 2 +- lgsm/functions/fix_steamcmd.sh | 2 +- lgsm/functions/fix_ut.sh | 2 +- lgsm/functions/fix_ut2k4.sh | 2 +- lgsm/functions/gsquery.py | 2 +- lgsm/functions/info_config.sh | 2 +- lgsm/functions/info_distro.sh | 2 +- lgsm/functions/info_glibc.sh | 2 +- lgsm/functions/info_messages.sh | 2 +- lgsm/functions/info_parms.sh | 2 +- lgsm/functions/install_complete.sh | 2 +- lgsm/functions/install_config.sh | 2 +- lgsm/functions/install_dst_token.sh | 4 ++-- lgsm/functions/install_factorio_save.sh | 2 +- lgsm/functions/install_gslt.sh | 6 +++--- lgsm/functions/install_header.sh | 4 ++-- lgsm/functions/install_logs.sh | 2 +- lgsm/functions/install_minecraft_eula.sh | 2 +- lgsm/functions/install_mta_resources.sh | 2 +- lgsm/functions/install_retry.sh | 2 +- lgsm/functions/install_server_dir.sh | 2 +- lgsm/functions/install_server_files.sh | 2 +- lgsm/functions/install_squad_license.sh | 2 +- lgsm/functions/install_steamcmd.sh | 2 +- lgsm/functions/install_ts3db.sh | 2 +- lgsm/functions/install_unreal_tournament_eula.sh | 2 +- lgsm/functions/install_ut2k4_key.sh | 2 +- lgsm/functions/logs.sh | 2 +- lgsm/functions/mods_core.sh | 2 +- lgsm/functions/mods_list.sh | 2 +- lgsm/functions/monitor_gsquery.sh | 2 +- lgsm/functions/update_factorio.sh | 2 +- lgsm/functions/update_minecraft.sh | 2 +- lgsm/functions/update_mta.sh | 2 +- lgsm/functions/update_mumble.sh | 2 +- lgsm/functions/update_steamcmd.sh | 2 +- lgsm/functions/update_ts3.sh | 2 +- linuxgsm.sh | 4 ++-- tests/tests_jc2server.sh | 6 +++--- tests/tests_shellcheck.sh | 2 +- tests/tests_ts3server.sh | 6 +++--- 123 files changed, 144 insertions(+), 144 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 0da1e4963..818bed312 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -2,7 +2,7 @@ We are really glad you're reading this, because if you are then you have shown an interest in helping make LinuxGSM great. -If you haven't already, come find us on [Discord](https://gameservermanagers.com/discord). From there you will have contact with other contributers of the project. We want you working on things you're excited about. +If you haven't already, come find us on [Discord](https://linuxgsm.com/discord). From there you will have contact with other contributers of the project. We want you working on things you're excited about. Before working on a project we recommend that you create a issue in regards to the issue/feature. This will prevent duplicates while you work on the feature. If an issue already exists, make note that you are working on it so nobody else wastes their time working on the same project at the same time! diff --git a/lgsm/config-default/config-lgsm/bb2server/_default.cfg b/lgsm/config-default/config-lgsm/bb2server/_default.cfg index 4c036d47e..8e4b71a98 100644 --- a/lgsm/config-default/config-lgsm/bb2server/_default.cfg +++ b/lgsm/config-default/config-lgsm/bb2server/_default.cfg @@ -18,7 +18,7 @@ maxplayers="20" ## Optional: Game Server Login Token # GSLT can be used for running a public server. -# More info: https://gameservermanagers.com/gslt +# More info: https://linuxgsm.com/gslt gslt="" ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters diff --git a/lgsm/config-default/config-lgsm/bmdmserver/_default.cfg b/lgsm/config-default/config-lgsm/bmdmserver/_default.cfg index 68f813db3..d291dffd4 100644 --- a/lgsm/config-default/config-lgsm/bmdmserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/bmdmserver/_default.cfg @@ -18,7 +18,7 @@ maxplayers="16" ## Optional: Game Server Login Token # GSLT can be used for running a public server. -# More info: https://gameservermanagers.com/gslt +# More info: https://linuxgsm.com/gslt gslt="" ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters diff --git a/lgsm/config-default/config-lgsm/boserver/_default.cfg b/lgsm/config-default/config-lgsm/boserver/_default.cfg index f1712d72e..cceed8f99 100644 --- a/lgsm/config-default/config-lgsm/boserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/boserver/_default.cfg @@ -10,7 +10,7 @@ ## Optional: Game Server Login Token # GSLT can be used for running a public server. -# More info: https://gameservermanagers.com/gslt +# More info: https://linuxgsm.com/gslt gslt="" ip="" diff --git a/lgsm/config-default/config-lgsm/csgoserver/_default.cfg b/lgsm/config-default/config-lgsm/csgoserver/_default.cfg index 984c925fb..034d46ae1 100644 --- a/lgsm/config-default/config-lgsm/csgoserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/csgoserver/_default.cfg @@ -30,7 +30,7 @@ tickrate="64" ## Required: Game Server Login Token # GSLT is required for running a public server. -# More info: https://gameservermanagers.com/gslt +# More info: https://linuxgsm.com/gslt gslt="" ## Optional: Workshop Parameters diff --git a/lgsm/config-default/config-lgsm/cssserver/_default.cfg b/lgsm/config-default/config-lgsm/cssserver/_default.cfg index 4aaab2d78..b2bce516d 100644 --- a/lgsm/config-default/config-lgsm/cssserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/cssserver/_default.cfg @@ -18,7 +18,7 @@ maxplayers="16" ## Required: Game Server Login Token # GSLT is required for running a public server. -# More info: https://gameservermanagers.com/gslt +# More info: https://linuxgsm.com/gslt gslt="" ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters diff --git a/lgsm/config-default/config-lgsm/emserver/_default.cfg b/lgsm/config-default/config-lgsm/emserver/_default.cfg index 9e245c811..3a579deb6 100644 --- a/lgsm/config-default/config-lgsm/emserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/emserver/_default.cfg @@ -18,7 +18,7 @@ maxplayers="62" ## Optional: Game Server Login Token # GSLT can be used for running a public server. -# More info: https://gameservermanagers.com/gslt +# More info: https://linuxgsm.com/gslt gslt="" ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters diff --git a/lgsm/config-default/config-lgsm/gmodserver/_default.cfg b/lgsm/config-default/config-lgsm/gmodserver/_default.cfg index a0d7c716f..ba881f036 100644 --- a/lgsm/config-default/config-lgsm/gmodserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/gmodserver/_default.cfg @@ -29,7 +29,7 @@ customparms="+r_hunkalloclightmaps 0 -disableluarefresh" ## Optional: Game Server Login Token # GSLT can be used for running a public server. -# More info: https://gameservermanagers.com/gslt +# More info: https://linuxgsm.com/gslt gslt="" ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters diff --git a/lgsm/config-default/config-lgsm/insserver/_default.cfg b/lgsm/config-default/config-lgsm/insserver/_default.cfg index 45012cb9d..851766069 100644 --- a/lgsm/config-default/config-lgsm/insserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/insserver/_default.cfg @@ -20,7 +20,7 @@ workshop="0" ## Optional: Game Server Login Token # GSLT can be used for running a public server. -# More info: https://gameservermanagers.com/gslt +# More info: https://linuxgsm.com/gslt gslt="" ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters diff --git a/lgsm/config-default/config-lgsm/nmrihserver/_default.cfg b/lgsm/config-default/config-lgsm/nmrihserver/_default.cfg index 614d01ebf..61e738112 100644 --- a/lgsm/config-default/config-lgsm/nmrihserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/nmrihserver/_default.cfg @@ -18,7 +18,7 @@ maxplayers="8" ## Optional: Game Server Login Token # GSLT can be used for running a public server. -# More info: https://gameservermanagers.com/gslt +# More info: https://linuxgsm.com/gslt gslt="" ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters diff --git a/lgsm/config-default/config-lgsm/tf2server/_default.cfg b/lgsm/config-default/config-lgsm/tf2server/_default.cfg index 897c9fed6..831966588 100644 --- a/lgsm/config-default/config-lgsm/tf2server/_default.cfg +++ b/lgsm/config-default/config-lgsm/tf2server/_default.cfg @@ -18,7 +18,7 @@ maxplayers="16" ## Optional: Game Server Login Token # GSLT can be used for running a public server. -# More info: https://gameservermanagers.com/gslt +# More info: https://linuxgsm.com/gslt gslt="" ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters diff --git a/lgsm/config-default/config-lgsm/tuserver/_default.cfg b/lgsm/config-default/config-lgsm/tuserver/_default.cfg index 105b3b5a6..2de7c4cdf 100644 --- a/lgsm/config-default/config-lgsm/tuserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/tuserver/_default.cfg @@ -15,7 +15,7 @@ queryport="27015" ## Optional: Game Server Login Token # GSLT can be used for running a public server. -# More info: https://gameservermanagers.com/gslt +# More info: https://linuxgsm.com/gslt gslt="" ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters diff --git a/lgsm/config-default/config-lgsm/zpsserver/_default.cfg b/lgsm/config-default/config-lgsm/zpsserver/_default.cfg index 4a95aef42..dcada8f4e 100644 --- a/lgsm/config-default/config-lgsm/zpsserver/_default.cfg +++ b/lgsm/config-default/config-lgsm/zpsserver/_default.cfg @@ -18,7 +18,7 @@ maxplayers="20" ## Optional: Game Server Login Token # GSLT can be used for running a public server. -# More info: https://gameservermanagers.com/gslt +# More info: https://linuxgsm.com/gslt gslt="" ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters diff --git a/lgsm/functions/alert.sh b/lgsm/functions/alert.sh index 5faa6e2bd..31df0e18c 100644 --- a/lgsm/functions/alert.sh +++ b/lgsm/functions/alert.sh @@ -1,7 +1,7 @@ #!/bin/bash # LinuxGSM alert.sh function # Author: Daniel Gibbs -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com # Description: Overall function for managing alerts. local commandname="ALERT" diff --git a/lgsm/functions/alert_discord.sh b/lgsm/functions/alert_discord.sh index f945d0f90..acef4f533 100644 --- a/lgsm/functions/alert_discord.sh +++ b/lgsm/functions/alert_discord.sh @@ -2,7 +2,7 @@ # LinuxGSM alert_discord.sh function # Author: Daniel Gibbs # Contributor: faflfama -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com # Description: Sends Discord alert. json=$(cat < 1.6 required - https://gameservermanagers.com/tmux-upgrade + https://linuxgsm.com/tmux-upgrade Currently installed: $(tmux -V)" > "${consolelog}" # 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://gameservermanagers.com/tmux-upgrade + https://linuxgsm.com/tmux-upgrade Currently installed: $(tmux -V)" > "${consolelog}" # Console logging enable or not set elif [ "${consolelogging}" == "on" ]||[ -z "${consolelogging}" ]; then @@ -168,7 +168,7 @@ sleep 1 echo "=================================" cat "${lgsmlogdir}/.${servicename}-tmux-error.tmp" | tee -a "${lgsmlog}" - # Detected error https://gameservermanagers.com/support + # Detected error https://linuxgsm.com/support if [ $(grep -c "Operation not permitted" "${lgsmlogdir}/.${servicename}-tmux-error.tmp") ]; then echo "" echo "Fix" @@ -185,13 +185,13 @@ sleep 1 echo "" echo " usermod -G tty $(whoami)" echo "" - echo "https://gameservermanagers.com/tmux-op-perm" - fn_script_log_info "https://gameservermanagers.com/tmux-op-perm" + echo "https://linuxgsm.com/tmux-op-perm" + fn_script_log_info "https://linuxgsm.com/tmux-op-perm" else echo "No known fix currently. Please log an issue." fn_script_log_info "No known fix currently. Please log an issue." - echo "https://gameservermanagers.com/support" - fn_script_log_info "https://gameservermanagers.com/support" + echo "https://linuxgsm.com/support" + fn_script_log_info "https://linuxgsm.com/support" fi fi fi diff --git a/lgsm/functions/command_stop.sh b/lgsm/functions/command_stop.sh index 13040a00f..e54a6f80e 100644 --- a/lgsm/functions/command_stop.sh +++ b/lgsm/functions/command_stop.sh @@ -2,7 +2,7 @@ # LinuxGSM command_stop.sh function # Author: Daniel Gibbs # Contributors: UltimateByte -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com # Description: Stops the server. local commandname="STOP" diff --git a/lgsm/functions/command_test_alert.sh b/lgsm/functions/command_test_alert.sh index 95d60d83e..e973007b8 100644 --- a/lgsm/functions/command_test_alert.sh +++ b/lgsm/functions/command_test_alert.sh @@ -1,7 +1,7 @@ #!/bin/bash # LinuxGSM command_test_alert.sh function # Author: Daniel Gibbs -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com # Description: Sends a test alert. local commandname="ALERT" diff --git a/lgsm/functions/command_ts3_server_pass.sh b/lgsm/functions/command_ts3_server_pass.sh index 0525a283c..ccf619b6b 100644 --- a/lgsm/functions/command_ts3_server_pass.sh +++ b/lgsm/functions/command_ts3_server_pass.sh @@ -2,7 +2,7 @@ # LinuxGSM command_ts3_server_pass.sh function # Author: Daniel Gibbs # Contributor : UltimateByte -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com # Description: Changes TS3 serveradmin password. local commandname="TS3-CHANGE-PASS" diff --git a/lgsm/functions/command_update.sh b/lgsm/functions/command_update.sh index c4dbb0b36..de180118a 100644 --- a/lgsm/functions/command_update.sh +++ b/lgsm/functions/command_update.sh @@ -1,7 +1,7 @@ #!/bin/bash # LinuxGSM command_update.sh function # Author: Daniel Gibbs -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com # Description: Handles updating of servers. local commandname="UPDATE" diff --git a/lgsm/functions/command_update_functions.sh b/lgsm/functions/command_update_functions.sh index f8acf652b..33609b121 100644 --- a/lgsm/functions/command_update_functions.sh +++ b/lgsm/functions/command_update_functions.sh @@ -1,7 +1,7 @@ #!/bin/bash # LinuxGSM command_update_functions.sh function # Author: Daniel Gibbs -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com # Description: Deletes the functions dir to allow re-downloading of functions from GitHub. # Legacy Command diff --git a/lgsm/functions/command_update_linuxgsm.sh b/lgsm/functions/command_update_linuxgsm.sh index fdd42e361..0e7f65cf8 100644 --- a/lgsm/functions/command_update_linuxgsm.sh +++ b/lgsm/functions/command_update_linuxgsm.sh @@ -1,7 +1,7 @@ #!/bin/bash # LinuxGSM command_update_linuxgsm.sh function # Author: Daniel Gibbs -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com # Description: Deletes the functions dir to allow re-downloading of functions from GitHub. local commandname="UPDATE LinuxGSM" diff --git a/lgsm/functions/command_validate.sh b/lgsm/functions/command_validate.sh index 09d31a436..8ae6a08ae 100644 --- a/lgsm/functions/command_validate.sh +++ b/lgsm/functions/command_validate.sh @@ -1,7 +1,7 @@ #!/bin/bash # LinuxGSM command_validate.sh function # Author: Daniel Gibbs -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com # Description: Runs a server validation. local commandname="VALIDATE" diff --git a/lgsm/functions/command_wipe.sh b/lgsm/functions/command_wipe.sh index aef43ae0e..370879832 100644 --- a/lgsm/functions/command_wipe.sh +++ b/lgsm/functions/command_wipe.sh @@ -2,7 +2,7 @@ # LinuxGSM command_backup.sh function # Author: Daniel Gibbs # Contributor: UltimateByte -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com # Description: Wipes server data, useful after updates for some games like Rust local commandname="WIPE" diff --git a/lgsm/functions/compress_unreal2_maps.sh b/lgsm/functions/compress_unreal2_maps.sh index 2b0f35951..bda9490cc 100644 --- a/lgsm/functions/compress_unreal2_maps.sh +++ b/lgsm/functions/compress_unreal2_maps.sh @@ -1,7 +1,7 @@ #!/bin/bash # LinuxGSM compress_unreal2_maps.sh function # Author: Daniel Gibbs -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com # Description: Compresses unreal maps. local commandaction="Unreal Map Compressor" diff --git a/lgsm/functions/compress_ut99_maps.sh b/lgsm/functions/compress_ut99_maps.sh index b665dcb14..c75f674d1 100644 --- a/lgsm/functions/compress_ut99_maps.sh +++ b/lgsm/functions/compress_ut99_maps.sh @@ -1,7 +1,7 @@ #!/bin/bash # LinuxGSM compress_ut99_maps.sh function # Author: Daniel Gibbs -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com # Description: Compresses unreal maps. local commandaction="Unreal Map Compressor" diff --git a/lgsm/functions/core_dl.sh b/lgsm/functions/core_dl.sh index d279ab85b..a45ced4a3 100644 --- a/lgsm/functions/core_dl.sh +++ b/lgsm/functions/core_dl.sh @@ -2,7 +2,7 @@ # LinuxGSM core_dl.sh function # Author: Daniel Gibbs # Contributor: UltimateByte -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com # Description: Deals with all downloads for LinuxGSM. # remote_fileurl: The URL of the file: http://example.com/dl/File.tar.bz2 diff --git a/lgsm/functions/core_exit.sh b/lgsm/functions/core_exit.sh index 02b471c78..3ce4600da 100644 --- a/lgsm/functions/core_exit.sh +++ b/lgsm/functions/core_exit.sh @@ -1,7 +1,7 @@ #!/bin/bash # LinuxGSM core_exit.sh function # Author: Daniel Gibbs -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com # Description: Handles exiting of LinuxGSM by running and reporting an exit code. fn_exit_dev_debug(){ diff --git a/lgsm/functions/core_functions.sh b/lgsm/functions/core_functions.sh index 49e89fba7..0bea6c7a3 100644 --- a/lgsm/functions/core_functions.sh +++ b/lgsm/functions/core_functions.sh @@ -1,7 +1,7 @@ #!/bin/bash # LinuxGSM core_functions.sh function # Author: Daniel Gibbs -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com # Description: Defines all functions to allow download and execution of functions using fn_fetch_function. # This function is called first before any other function. Without this file other functions will not load. diff --git a/lgsm/functions/core_getopt.sh b/lgsm/functions/core_getopt.sh index 69a1c261d..9f9d87247 100644 --- a/lgsm/functions/core_getopt.sh +++ b/lgsm/functions/core_getopt.sh @@ -1,7 +1,7 @@ #!/bin/bash # LinuxGSM core_getopt.sh function # Author: Daniel Gibbs -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com # Description: getopt arguments. local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" @@ -148,7 +148,7 @@ fn_opt_usage(){ echo "Usage: $0 [option]" echo -e "" echo "${gamename} - Linux Game Server Manager - Version ${version}" - echo "https://gameservermanagers.com/${gameservername}" + echo "https://linuxgsm.com/${gameservername}" echo -e "" echo -e "${lightyellow}Commands${default}" # Display available commands diff --git a/lgsm/functions/core_legacy.sh b/lgsm/functions/core_legacy.sh index 5f814a486..41f642320 100644 --- a/lgsm/functions/core_legacy.sh +++ b/lgsm/functions/core_legacy.sh @@ -1,7 +1,7 @@ #!/bin/bash # LinuxGSM core_legacy.sh function # Author: Daniel Gibbs -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com # Description: Code for backwards compatability with older versions of LinuxGSM. if [ -z "${serverfiles}" ]; then diff --git a/lgsm/functions/core_messages.sh b/lgsm/functions/core_messages.sh index c791b67f8..9ffbc52ae 100644 --- a/lgsm/functions/core_messages.sh +++ b/lgsm/functions/core_messages.sh @@ -2,7 +2,7 @@ # LinuxGSM core_messages.sh function # Author: Daniel Gibbs # Contributor: s-eam -# Website: https://gameservermanagers.com +# 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 diff --git a/lgsm/functions/core_trap.sh b/lgsm/functions/core_trap.sh index 253c8b4d2..57bec2aa7 100644 --- a/lgsm/functions/core_trap.sh +++ b/lgsm/functions/core_trap.sh @@ -1,7 +1,7 @@ #!/bin/bash # LinuxGSM core_trap.sh function # Author: Daniel Gibbs -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com # Description: Handles CTRL-C trap to give an exit code. fn_exit_trap(){ diff --git a/lgsm/functions/fix.sh b/lgsm/functions/fix.sh index 2fd0d9bca..1d89cc4ee 100644 --- a/lgsm/functions/fix.sh +++ b/lgsm/functions/fix.sh @@ -1,7 +1,7 @@ #!/bin/bash # LinuxGSM fix.sh function # Author: Daniel Gibbs -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com # Description: Overall function for managing fixes. # Runs functions that will fix an issue. diff --git a/lgsm/functions/fix_ark.sh b/lgsm/functions/fix_ark.sh index 94ea689f0..e9be8ecaf 100644 --- a/lgsm/functions/fix_ark.sh +++ b/lgsm/functions/fix_ark.sh @@ -1,7 +1,7 @@ #!/bin/bash # LinuxGSM fix_ark.sh function # Author: Daniel Gibbs -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com # Description: Resolves various issues with ARK: Survival Evolved. # Symlinking the SteamCMD directory into the correct ARK directory so that the mods auto-management will work. diff --git a/lgsm/functions/fix_arma3.sh b/lgsm/functions/fix_arma3.sh index 363ccfe43..06e54f7cd 100644 --- a/lgsm/functions/fix_arma3.sh +++ b/lgsm/functions/fix_arma3.sh @@ -1,7 +1,7 @@ #!/bin/bash # LinuxGSM fix_arma3.sh function # Author: Daniel Gibbs -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com # Description: Resolves an issue with ARMA3. local commandname="FIX" diff --git a/lgsm/functions/fix_coduo.sh b/lgsm/functions/fix_coduo.sh index a092acaba..09530e99a 100644 --- a/lgsm/functions/fix_coduo.sh +++ b/lgsm/functions/fix_coduo.sh @@ -1,7 +1,7 @@ #!/bin/bash # LinuxGSM fix_coduo.sh function # Author: Alexander Hurd -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com # Description: Fixes for Call of Duty: United Offensive local commandname="FIX" diff --git a/lgsm/functions/fix_csgo.sh b/lgsm/functions/fix_csgo.sh index f76a4f5d2..f51b405ff 100644 --- a/lgsm/functions/fix_csgo.sh +++ b/lgsm/functions/fix_csgo.sh @@ -1,7 +1,7 @@ #!/bin/bash # LinuxGSM fix_csgo.sh function # Author: Daniel Gibbs -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com # Description: Resolves various issues with CS:GO. local commandname="FIX" diff --git a/lgsm/functions/fix_dst.sh b/lgsm/functions/fix_dst.sh index f3138d5b7..80c397442 100644 --- a/lgsm/functions/fix_dst.sh +++ b/lgsm/functions/fix_dst.sh @@ -1,7 +1,7 @@ #!/bin/bash # LinuxGSM fix_dst.sh function # Author: Daniel Gibbs -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com # Description: Resolves various issues with Don't Starve Together. local commandname="FIX" diff --git a/lgsm/functions/fix_ges.sh b/lgsm/functions/fix_ges.sh index f97ca767c..977697cca 100644 --- a/lgsm/functions/fix_ges.sh +++ b/lgsm/functions/fix_ges.sh @@ -1,7 +1,7 @@ #!/bin/bash # LinuxGSM fix_ges.sh function # Author: Daniel Gibbs -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com # Description: Resolves various issues with GoldenEye: Source. local commandname="FIX" diff --git a/lgsm/functions/fix_glibc.sh b/lgsm/functions/fix_glibc.sh index 50ea72435..b5da964de 100644 --- a/lgsm/functions/fix_glibc.sh +++ b/lgsm/functions/fix_glibc.sh @@ -1,7 +1,7 @@ #!/bin/bash # LinuxGSM fix_glibc.sh function # Author: Daniel Gibbs -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com # Description: Downloads required Glibc files and applies the Glibc fix if required. local commandname="FIX" diff --git a/lgsm/functions/fix_ins.sh b/lgsm/functions/fix_ins.sh index 86fff41e7..354401ea5 100644 --- a/lgsm/functions/fix_ins.sh +++ b/lgsm/functions/fix_ins.sh @@ -1,7 +1,7 @@ #!/bin/bash # LinuxGSM fix_ins.sh function # Author: Daniel Gibbs -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com # Description: Resolves various issues with Insurgency. local commandname="FIX" diff --git a/lgsm/functions/fix_kf.sh b/lgsm/functions/fix_kf.sh index 2345c921d..db8c07ba2 100644 --- a/lgsm/functions/fix_kf.sh +++ b/lgsm/functions/fix_kf.sh @@ -1,7 +1,7 @@ #!/bin/bash # LinuxGSM fix_kf.sh function # Author: Daniel Gibbs -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com # Description: Resolves various issues with Killing Floor. local commandname="FIX" diff --git a/lgsm/functions/fix_kf2.sh b/lgsm/functions/fix_kf2.sh index 7b64d09f9..2a402e7d3 100644 --- a/lgsm/functions/fix_kf2.sh +++ b/lgsm/functions/fix_kf2.sh @@ -1,7 +1,7 @@ #!/bin/bash # LinuxGSM fix_kf3.sh function # Author: Daniel Gibbs -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com # Description: Resolves various issues with Killing Floor 2. local commandname="FIX" diff --git a/lgsm/functions/fix_mta.sh b/lgsm/functions/fix_mta.sh index 6953f131e..333705d42 100644 --- a/lgsm/functions/fix_mta.sh +++ b/lgsm/functions/fix_mta.sh @@ -2,7 +2,7 @@ # LinuxGSM fix_mta.sh function # Author: Daniel Gibbs # Contributor: ChaosMTA -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com # Description: Installs the libmysqlclient for database functions on the server local commandname="FIX" local commandaction="Fix" diff --git a/lgsm/functions/fix_ro.sh b/lgsm/functions/fix_ro.sh index eeef80dd1..66ebfdc52 100644 --- a/lgsm/functions/fix_ro.sh +++ b/lgsm/functions/fix_ro.sh @@ -1,7 +1,7 @@ #!/bin/bash # LinuxGSM fix_ro.sh function # Author: Daniel Gibbs -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com # Description: Resolves various issues with Red Orchestra. local commandname="FIX" diff --git a/lgsm/functions/fix_rust.sh b/lgsm/functions/fix_rust.sh index ea41a65f9..f4eb5298d 100644 --- a/lgsm/functions/fix_rust.sh +++ b/lgsm/functions/fix_rust.sh @@ -1,7 +1,7 @@ #!/bin/bash # LinuxGSM fix_rust.sh function # Author: Daniel Gibbs -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com # Description: Resolves startup issue with Rust local commandname="FIX" diff --git a/lgsm/functions/fix_steamcmd.sh b/lgsm/functions/fix_steamcmd.sh index 362fb0d7e..3a63b1505 100644 --- a/lgsm/functions/fix_steamcmd.sh +++ b/lgsm/functions/fix_steamcmd.sh @@ -1,7 +1,7 @@ #!/bin/bash # LinuxGSM fix_steamcmd.sh function # Author: Daniel Gibbs -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com # Description: Resolves various issues related to SteamCMD. local commandname="FIX" diff --git a/lgsm/functions/fix_ut.sh b/lgsm/functions/fix_ut.sh index 40fd2b73b..c797c7acb 100644 --- a/lgsm/functions/fix_ut.sh +++ b/lgsm/functions/fix_ut.sh @@ -1,7 +1,7 @@ #!/bin/bash # LinuxGSM fix_ut.sh function # Author: Alexander Hurd -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com # Description: Resolves various issues with Unreal Tournament. local commandname="FIX" diff --git a/lgsm/functions/fix_ut2k4.sh b/lgsm/functions/fix_ut2k4.sh index 275c1757c..a2ce302ec 100644 --- a/lgsm/functions/fix_ut2k4.sh +++ b/lgsm/functions/fix_ut2k4.sh @@ -1,7 +1,7 @@ #!/bin/bash # LinuxGSM fix_ut2k4.sh function # Author: Daniel Gibbs -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com # Description: Resolves various issues with Unreal Tournament 2004. local commandname="FIX" diff --git a/lgsm/functions/gsquery.py b/lgsm/functions/gsquery.py index c6d400b54..55741668e 100644 --- a/lgsm/functions/gsquery.py +++ b/lgsm/functions/gsquery.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # PythonGSQ # Author: Anonymous & Daniel Gibbs -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com # Description: Allows querying of various game servers. import optparse diff --git a/lgsm/functions/info_config.sh b/lgsm/functions/info_config.sh index 47a279f94..5a9cc784d 100644 --- a/lgsm/functions/info_config.sh +++ b/lgsm/functions/info_config.sh @@ -2,7 +2,7 @@ # LinuxGSM info_config.sh function # Author: Daniel Gibbs # Contributor: UltimateByte -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com # Description: Gets specific details from config files. local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" diff --git a/lgsm/functions/info_distro.sh b/lgsm/functions/info_distro.sh index 661123a80..126cc8925 100644 --- a/lgsm/functions/info_distro.sh +++ b/lgsm/functions/info_distro.sh @@ -1,7 +1,7 @@ #!/bin/bash # LinuxGSM info_distro.sh function # Author: Daniel Gibbs -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com # Description: Variables providing useful info on the Operating System such as disk and performace info. # Used for command_details.sh, command_debug.sh and alert.sh. diff --git a/lgsm/functions/info_glibc.sh b/lgsm/functions/info_glibc.sh index 9ca175c1e..1e11cf15a 100644 --- a/lgsm/functions/info_glibc.sh +++ b/lgsm/functions/info_glibc.sh @@ -1,7 +1,7 @@ #!/bin/bash # LinuxGSM info_glibc.sh function # Author: Daniel Gibbs -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com # Description: Stores details on servers Glibc requirements. local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" diff --git a/lgsm/functions/info_messages.sh b/lgsm/functions/info_messages.sh index cd53846b2..5a1fb2a1d 100644 --- a/lgsm/functions/info_messages.sh +++ b/lgsm/functions/info_messages.sh @@ -1,7 +1,7 @@ #!/bin/bash # LinuxGSM info_messages.sh function # Author: Daniel Gibbs -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com # Description: Defines server info messages for details, alerts. # Standard Details diff --git a/lgsm/functions/info_parms.sh b/lgsm/functions/info_parms.sh index b1b0583a5..9fc856a80 100644 --- a/lgsm/functions/info_parms.sh +++ b/lgsm/functions/info_parms.sh @@ -1,7 +1,7 @@ #!/bin/bash # LinuxGSM info_parms.sh function # Author: Daniel Gibbs -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com # Description: If specific parms are not set then this will be displayed in details. local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" diff --git a/lgsm/functions/install_complete.sh b/lgsm/functions/install_complete.sh index 4052e4829..9712a6bc8 100644 --- a/lgsm/functions/install_complete.sh +++ b/lgsm/functions/install_complete.sh @@ -1,7 +1,7 @@ #!/bin/bash # LinuxGSM install_complete.sh function # Author: Daniel Gibbs -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com # Description: Prints installation completion message and hints. local commandname="INSTALL" diff --git a/lgsm/functions/install_config.sh b/lgsm/functions/install_config.sh index b7939d290..0fb611253 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -1,7 +1,7 @@ #!/bin/bash # LinuxGSM install_config.sh function # Author: Daniel Gibbs -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com # Description: Creates default server configs. local commandname="INSTALL" diff --git a/lgsm/functions/install_dst_token.sh b/lgsm/functions/install_dst_token.sh index a350577e8..f7bd27138 100644 --- a/lgsm/functions/install_dst_token.sh +++ b/lgsm/functions/install_dst_token.sh @@ -1,7 +1,7 @@ #!/bin/bash # LinuxGSM install_dst_token.sh function # Author: Daniel Gibbs & Marvin Lehmann (marvinl97) -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com # Description: Configures Don't Starve Together cluster with given token. local commandname="INSTALL" @@ -14,7 +14,7 @@ echo "=================================" sleep 1 echo "A cluster token is required to run this server!" echo "Follow the instructions in this link to obtain this key:" -echo "https://gameservermanagers.com/dst-auth-token" +echo "https://linuxgsm.com/dst-auth-token" echo "" if [ -z "${autoinstall}" ]; then overwritetoken="true" diff --git a/lgsm/functions/install_factorio_save.sh b/lgsm/functions/install_factorio_save.sh index 240c2a62a..b63004e6d 100644 --- a/lgsm/functions/install_factorio_save.sh +++ b/lgsm/functions/install_factorio_save.sh @@ -1,7 +1,7 @@ #!/bin/bash # LinuxGSM install_factorio_save.sh function # Author: Kristian Polso -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com # Description: Creates the initial save file for Factorio local commandname="INSTALL" diff --git a/lgsm/functions/install_gslt.sh b/lgsm/functions/install_gslt.sh index 918753d74..bebb3c3ed 100644 --- a/lgsm/functions/install_gslt.sh +++ b/lgsm/functions/install_gslt.sh @@ -1,7 +1,7 @@ #!/bin/bash # LinuxGSM install_gslt.sh function # Author: Daniel Gibbs -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com # Description: Configures GSLT. local commandname="INSTALL" @@ -21,9 +21,9 @@ else fi echo "Get more info and a token here:" -echo "https://gameservermanagers.com/gslt" +echo "https://linuxgsm.com/gslt" fn_script_log_info "Get more info and a token here:" -fn_script_log_info "https://gameservermanagers.com/gslt" +fn_script_log_info "https://linuxgsm.com/gslt" echo "" if [ -z "${autoinstall}" ]; then if [ "${gamename}" != "Tower Unite" ]; then diff --git a/lgsm/functions/install_header.sh b/lgsm/functions/install_header.sh index 0d11e0255..cae416547 100644 --- a/lgsm/functions/install_header.sh +++ b/lgsm/functions/install_header.sh @@ -1,7 +1,7 @@ #!/bin/bash # LinuxGSM install_header.sh function # Author: Daniel Gibbs -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com # Description: Prints installation header. local commandname="INSTALL" @@ -14,5 +14,5 @@ echo "${gamename}" echo "Linux Game Server Manager" echo "by Daniel Gibbs" echo "Contributors: http://goo.gl/qLmitD" -echo "https://gameservermanagers.com" +echo "https://linuxgsm.com" echo "=================================" diff --git a/lgsm/functions/install_logs.sh b/lgsm/functions/install_logs.sh index 120e8b624..b951436e7 100644 --- a/lgsm/functions/install_logs.sh +++ b/lgsm/functions/install_logs.sh @@ -1,7 +1,7 @@ #!/bin/bash # LinuxGSM install_logs.sh function # Author: Daniel Gibbs -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com # Description: Creates log directories. local commandname="INSTALL" diff --git a/lgsm/functions/install_minecraft_eula.sh b/lgsm/functions/install_minecraft_eula.sh index 5ca97ac8e..2bf6e1c92 100644 --- a/lgsm/functions/install_minecraft_eula.sh +++ b/lgsm/functions/install_minecraft_eula.sh @@ -1,7 +1,7 @@ #!/bin/bash # LinuxGSM install_minecraft_eula.sh function # Author: Daniel Gibbs -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com # Description: Gets user to accept the EULA. echo "" diff --git a/lgsm/functions/install_mta_resources.sh b/lgsm/functions/install_mta_resources.sh index 7cb58b505..b4ff2bece 100644 --- a/lgsm/functions/install_mta_resources.sh +++ b/lgsm/functions/install_mta_resources.sh @@ -2,7 +2,7 @@ # LinuxGSM install_mta_resources.sh function # Author: Daniel Gibbs # Contributor: ChaosMTA -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com # Description: Installs the libmysqlclient for database functions on the server and optionally installs default resources required to run the server local commandname="INSTALL" diff --git a/lgsm/functions/install_retry.sh b/lgsm/functions/install_retry.sh index 7333bd8f7..e2918c268 100644 --- a/lgsm/functions/install_retry.sh +++ b/lgsm/functions/install_retry.sh @@ -1,7 +1,7 @@ #!/bin/bash # LinuxGSM install_retry.sh function # Author: Daniel Gibbs -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com # Description: Asks for installation retry after failure. local commandname="INSTALL" diff --git a/lgsm/functions/install_server_dir.sh b/lgsm/functions/install_server_dir.sh index 56943eb74..579f10497 100644 --- a/lgsm/functions/install_server_dir.sh +++ b/lgsm/functions/install_server_dir.sh @@ -1,7 +1,7 @@ #!/bin/bash # LinuxGSM install_server_dir.sh function # Author: Daniel Gibbs -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com # Description: Creates the server directory. local commandname="INSTALL" diff --git a/lgsm/functions/install_server_files.sh b/lgsm/functions/install_server_files.sh index 5e15a75d3..bec59e31b 100644 --- a/lgsm/functions/install_server_files.sh +++ b/lgsm/functions/install_server_files.sh @@ -1,7 +1,7 @@ #!/bin/bash # LinuxGSM install_server_files.sh function # Author: Daniel Gibbs -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com # Description: Installs server files. local commandname="INSTALL" diff --git a/lgsm/functions/install_squad_license.sh b/lgsm/functions/install_squad_license.sh index d2cebaccb..a5ca6345a 100644 --- a/lgsm/functions/install_squad_license.sh +++ b/lgsm/functions/install_squad_license.sh @@ -1,7 +1,7 @@ #!/bin/bash # LinuxGSM install_squad_license.sh function # Author: Daniel Gibbs -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com # Description: Configures the Squad server's license. local commandname="INSTALL" diff --git a/lgsm/functions/install_steamcmd.sh b/lgsm/functions/install_steamcmd.sh index 26335c187..7d3374ebd 100644 --- a/lgsm/functions/install_steamcmd.sh +++ b/lgsm/functions/install_steamcmd.sh @@ -1,7 +1,7 @@ #!/bin/bash # LinuxGSM install_steamcmd.sh function # Author: Daniel Gibbs -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com # Description: Downloads SteamCMD on install. local commandname="INSTALL" diff --git a/lgsm/functions/install_ts3db.sh b/lgsm/functions/install_ts3db.sh index 966276f10..1509c8f62 100644 --- a/lgsm/functions/install_ts3db.sh +++ b/lgsm/functions/install_ts3db.sh @@ -2,7 +2,7 @@ # LinuxGSM install_ts3db.sh function # Author: Daniel Gibbs # Contributor: PhilPhonic -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com # Description: Installs the database server MariaDB for TeamSpeak 3. local commandname="INSTALL" diff --git a/lgsm/functions/install_unreal_tournament_eula.sh b/lgsm/functions/install_unreal_tournament_eula.sh index a8e31b22a..8df4ad1e7 100644 --- a/lgsm/functions/install_unreal_tournament_eula.sh +++ b/lgsm/functions/install_unreal_tournament_eula.sh @@ -1,7 +1,7 @@ #!/bin/bash # LinuxGSM install_unreal_tournament_eula.sh function # Author: Daniel Gibbs -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com # Description: Gets user to accept the EULA. echo "" diff --git a/lgsm/functions/install_ut2k4_key.sh b/lgsm/functions/install_ut2k4_key.sh index b5e4b6bf8..b9bdf1306 100644 --- a/lgsm/functions/install_ut2k4_key.sh +++ b/lgsm/functions/install_ut2k4_key.sh @@ -1,7 +1,7 @@ #!/bin/bash # LinuxGSM install_ut2k4_key.sh function # Author: Daniel Gibbs -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com # Description: Activates ut2k4 server with given key. local commandname="INSTALL" diff --git a/lgsm/functions/logs.sh b/lgsm/functions/logs.sh index 927185ecf..106f64825 100644 --- a/lgsm/functions/logs.sh +++ b/lgsm/functions/logs.sh @@ -2,7 +2,7 @@ # LinuxGSM logs.sh function # Author: Daniel Gibbs # Contributor: UltimateByte -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com # Description: Acts as a log rotator, removing old logs. local commandname="LOGS" diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index fbf2c0b29..e6b0ad43c 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -2,7 +2,7 @@ # LinuxGSM command_mods_install.sh function # Author: Daniel Gibbs # Contributor: UltimateByte -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com # Description: Core functions for mods list/install/update/remove local commandname="MODS" diff --git a/lgsm/functions/mods_list.sh b/lgsm/functions/mods_list.sh index 5852117eb..f15283f3b 100644 --- a/lgsm/functions/mods_list.sh +++ b/lgsm/functions/mods_list.sh @@ -2,7 +2,7 @@ # LinuxGSM mods_list.sh function # Author: Daniel Gibbs # Contributor: UltimateByte -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com # Description: Lists and defines available mods for LinuxGSM supported servers; works along with mods_core.sh. # Usage: To add a mod, you need to add an array variable following the guide to set proper values; # Usage: Then add this array to the mods_global_array. diff --git a/lgsm/functions/monitor_gsquery.sh b/lgsm/functions/monitor_gsquery.sh index 5ddd03a0e..7ffca8c7c 100644 --- a/lgsm/functions/monitor_gsquery.sh +++ b/lgsm/functions/monitor_gsquery.sh @@ -1,7 +1,7 @@ #!/bin/bash # LinuxGSM monitor_gsquery.sh function # Author: Daniel Gibbs -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com # Description: Uses gsquery.py to query the server port. # Detects if the server has frozen with the process still running. diff --git a/lgsm/functions/update_factorio.sh b/lgsm/functions/update_factorio.sh index d9e7ab017..a22bbfdb1 100644 --- a/lgsm/functions/update_factorio.sh +++ b/lgsm/functions/update_factorio.sh @@ -2,7 +2,7 @@ # LinuxGSM update_factorio.sh function # Author: Daniel Gibbs # Contributor: Kristian Polso -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com # Description: Handles updating of Factorio servers. local commandname="UPDATE" diff --git a/lgsm/functions/update_minecraft.sh b/lgsm/functions/update_minecraft.sh index 5fb3fa648..cb23e5264 100644 --- a/lgsm/functions/update_minecraft.sh +++ b/lgsm/functions/update_minecraft.sh @@ -1,7 +1,7 @@ #!/bin/bash # LinuxGSM update_minecraft.sh function # Author: Daniel Gibbs -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com # Description: Handles updating of Minecraft servers. local commandname="UPDATE" diff --git a/lgsm/functions/update_mta.sh b/lgsm/functions/update_mta.sh index 8c0614d99..8ae9f8b53 100644 --- a/lgsm/functions/update_mta.sh +++ b/lgsm/functions/update_mta.sh @@ -1,7 +1,7 @@ #!/bin/bash # LinuxGSM update_mta.sh function # Author: Daniel Gibbs -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com # Description: Handles updating of Multi Theft Auto servers. local commandname="UPDATE" diff --git a/lgsm/functions/update_mumble.sh b/lgsm/functions/update_mumble.sh index 765710f08..8ae59a52b 100644 --- a/lgsm/functions/update_mumble.sh +++ b/lgsm/functions/update_mumble.sh @@ -2,7 +2,7 @@ # LinuxGSM update_mumble.sh function # Author: Daniel Gibbs # Contributor: UltimateByte -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com # Description: Handles updating of mumble servers. local commandname="UPDATE" diff --git a/lgsm/functions/update_steamcmd.sh b/lgsm/functions/update_steamcmd.sh index e1925cc4c..8bc3fa144 100644 --- a/lgsm/functions/update_steamcmd.sh +++ b/lgsm/functions/update_steamcmd.sh @@ -1,7 +1,7 @@ #!/bin/bash # LinuxGSM update_steamcmd.sh function # Author: Daniel Gibbs -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com # Description: Handles updating using SteamCMD. local commandname="UPDATE" diff --git a/lgsm/functions/update_ts3.sh b/lgsm/functions/update_ts3.sh index 2e33c9203..2e3cc0d87 100644 --- a/lgsm/functions/update_ts3.sh +++ b/lgsm/functions/update_ts3.sh @@ -1,7 +1,7 @@ #!/bin/bash # LinuxGSM command_ts3.sh function # Author: Daniel Gibbs -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com # Description: Handles updating of teamspeak 3 servers. local commandname="UPDATE" diff --git a/linuxgsm.sh b/linuxgsm.sh index 1b87bb284..95d38c8b8 100755 --- a/linuxgsm.sh +++ b/linuxgsm.sh @@ -5,7 +5,7 @@ # Purpose: Linux Game Server Management Script # Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors # Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com # DO NOT EDIT THIS FILE # LinuxGSM configuration is no longer edited here @@ -226,7 +226,7 @@ fn_install_getopt(){ echo "Usage: $0 [option]" echo -e "" echo "Installer - Linux Game Server Managers - Version ${version}" - echo "https://gameservermanagers.com" + echo "https://linuxgsm.com" echo -e "" echo -e "Commands" echo -e "install\t\t| Select server to install." diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index c0d6d0b19..3b8f7cf6b 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -5,7 +5,7 @@ # Purpose: TravisCI Tests: Just Cause 2 | Linux Game Server Management Script # Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors # Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com travistest="1" @@ -221,7 +221,7 @@ fn_install_getopt(){ echo "Usage: $0 [option]" echo -e "" echo "Installer - Linux Game Server Managers - Version ${version}" - echo "https://gameservermanagers.com" + echo "https://linuxgsm.com" echo -e "" echo -e "Commands" echo -e "install |Select server to install." @@ -463,7 +463,7 @@ echo "=================================" echo "TravisCI Tests" echo "Linux Game Server Manager" echo "by Daniel Gibbs" -echo "https://gameservermanagers.com" +echo "https://linuxgsm.com" echo "=================================" echo "" echo "=================================" diff --git a/tests/tests_shellcheck.sh b/tests/tests_shellcheck.sh index 8970de676..11852d403 100644 --- a/tests/tests_shellcheck.sh +++ b/tests/tests_shellcheck.sh @@ -5,7 +5,7 @@ # Purpose: TravisCI Tests: Shellcheck | Linux Game Server Management Script # Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors # Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com echo "START Shellcheck" echo "=================================" diff --git a/tests/tests_ts3server.sh b/tests/tests_ts3server.sh index 7f327dc13..c3ed675f7 100644 --- a/tests/tests_ts3server.sh +++ b/tests/tests_ts3server.sh @@ -5,7 +5,7 @@ # Purpose: TravisCI Tests: Teamspeak 3 | Linux Game Server Management Script # Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors # Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki -# Website: https://gameservermanagers.com +# Website: https://linuxgsm.com travistest="1" @@ -221,7 +221,7 @@ fn_install_getopt(){ echo "Usage: $0 [option]" echo -e "" echo "Installer - Linux Game Server Managers - Version ${version}" - echo "https://gameservermanagers.com" + echo "https://linuxgsm.com" echo -e "" echo -e "Commands" echo -e "install |Select server to install." @@ -463,7 +463,7 @@ echo "=================================" echo "TravisCI Tests" echo "Linux Game Server Manager" echo "by Daniel Gibbs" -echo "https://gameservermanagers.com" +echo "https://linuxgsm.com" echo "=================================" echo "" echo "=================================" From 81fb2095a57963bd8057802db038ceec6a3c485a Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 14 Mar 2018 23:30:09 +0000 Subject: [PATCH 065/108] Updated travis headers --- tests/tests_jc2server.sh | 3 ++- tests/tests_shellcheck.sh | 3 ++- tests/tests_ts3server.sh | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index d92009913..748ef431e 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -463,7 +463,8 @@ echo "=================================" echo "Travis CI Tests" echo "Linux Game Server Manager" echo "by Daniel Gibbs" -echo "https://gameservermanagers.com" +echo "Contributors: http://goo.gl/qLmitD" +echo "https://linuxgsm.com" echo "=================================" echo "" echo "=================================" diff --git a/tests/tests_shellcheck.sh b/tests/tests_shellcheck.sh index 0a272df89..0a9230226 100644 --- a/tests/tests_shellcheck.sh +++ b/tests/tests_shellcheck.sh @@ -11,7 +11,8 @@ echo "=================================" echo "Travis CI Tests" echo "Linux Game Server Manager" echo "by Daniel Gibbs" -echo "https://gameservermanagers.com" +echo "Contributors: http://goo.gl/qLmitD" +echo "https://linuxgsm.com" echo "=================================" echo "" echo "=================================" diff --git a/tests/tests_ts3server.sh b/tests/tests_ts3server.sh index fa3be9788..7ef5a4b33 100644 --- a/tests/tests_ts3server.sh +++ b/tests/tests_ts3server.sh @@ -463,7 +463,8 @@ echo "=================================" echo "Travis CI Tests" echo "Linux Game Server Manager" echo "by Daniel Gibbs" -echo "https://gameservermanagers.com" +echo "Contributors: http://goo.gl/qLmitD" +echo "https://linuxgsm.com" echo "=================================" echo "" echo "=================================" From c3ee79e10b9357129637f4b830e443b91af45130 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Thu, 15 Mar 2018 19:51:52 +0000 Subject: [PATCH 066/108] Travis CI: Added Shellcheck test and setup parallel jobs * Added Shellcheck as a Travis CI test allowing monitoring of code standards * Setup new parallel jobs allowing all tests to run at the same time. Halving the testing time --- .travis.yml | 13 +++++++++---- tests/tests_jc2server.sh | 7 ++++--- tests/tests_shellcheck.sh | 30 ++++++++++++++++++++++++++++++ tests/tests_ts3server.sh | 7 ++++--- 4 files changed, 47 insertions(+), 10 deletions(-) create mode 100644 tests/tests_shellcheck.sh diff --git a/.travis.yml b/.travis.yml index c52f1af36..1ae96fc9c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -30,8 +30,13 @@ addons: - libstdc++6:i386 - net-tools - iproute2 + - shellcheck -script: - - - bash tests/tests_jc2server.sh - - bash tests/tests_ts3server.sh +jobs: + include: + - stage: jobs + script: bash tests/tests_jc2server.sh + - # stage name not required + script: bash tests/tests_ts3server.sh + - # stage name not required + script: bash tests/tests_shellcheck.sh \ No newline at end of file diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index c0d6d0b19..748ef431e 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -2,7 +2,7 @@ # Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs # License: MIT License, Copyright (c) 2017 Daniel Gibbs -# Purpose: TravisCI Tests: Just Cause 2 | Linux Game Server Management Script +# Purpose: Travis CI Tests: Just Cause 2 | Linux Game Server Management Script # Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors # Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com @@ -460,10 +460,11 @@ fn_test_result_fail(){ } echo "=================================" -echo "TravisCI Tests" +echo "Travis CI Tests" echo "Linux Game Server Manager" echo "by Daniel Gibbs" -echo "https://gameservermanagers.com" +echo "Contributors: http://goo.gl/qLmitD" +echo "https://linuxgsm.com" echo "=================================" echo "" echo "=================================" diff --git a/tests/tests_shellcheck.sh b/tests/tests_shellcheck.sh new file mode 100644 index 000000000..0a9230226 --- /dev/null +++ b/tests/tests_shellcheck.sh @@ -0,0 +1,30 @@ +#!/bin/bash +# Project: Game Server Managers - LinuxGSM +# Author: Daniel Gibbs +# License: MIT License, Copyright (c) 2017 Daniel Gibbs +# Purpose: Travis CI Tests: Shellcheck | Linux Game Server Management Script +# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors +# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki +# Website: https://gameservermanagers.com + +echo "=================================" +echo "Travis CI Tests" +echo "Linux Game Server Manager" +echo "by Daniel Gibbs" +echo "Contributors: http://goo.gl/qLmitD" +echo "https://linuxgsm.com" +echo "=================================" +echo "" +echo "=================================" +echo "Bash Analysis Tests" +echo "Using: Shellcheck" +echo "Testing Branch: $TRAVIS_BRANCH" +echo "=================================" +echo "" +find . -type f -name "*.sh" -not -path "./shunit2-2.1.6/*" -exec shellcheck --shell=bash --exclude=SC2154,SC2034 {} \; +find . -type f -name "*.cfg" -not -path "./shunit2-2.1.6/*" -exec shellcheck --shell=bash --exclude=SC2154,SC2034 {} \; +echo "" +echo "=================================" +echo "Bash Analysis Tests - Complete!" +echo "Using: Shellcheck" +echo "=================================" \ No newline at end of file diff --git a/tests/tests_ts3server.sh b/tests/tests_ts3server.sh index 7f327dc13..7ef5a4b33 100644 --- a/tests/tests_ts3server.sh +++ b/tests/tests_ts3server.sh @@ -2,7 +2,7 @@ # Project: Game Server Managers - LinuxGSM # Author: Daniel Gibbs # License: MIT License, Copyright (c) 2017 Daniel Gibbs -# Purpose: TravisCI Tests: Teamspeak 3 | Linux Game Server Management Script +# Purpose: Travis CI Tests: Teamspeak 3 | Linux Game Server Management Script # Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors # Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com @@ -460,10 +460,11 @@ fn_test_result_fail(){ } echo "=================================" -echo "TravisCI Tests" +echo "Travis CI Tests" echo "Linux Game Server Manager" echo "by Daniel Gibbs" -echo "https://gameservermanagers.com" +echo "Contributors: http://goo.gl/qLmitD" +echo "https://linuxgsm.com" echo "=================================" echo "" echo "=================================" From 9eeaeb9fe7af484b4657d732415fd8ae0345c514 Mon Sep 17 00:00:00 2001 From: Marvin Lehmann Date: Sat, 17 Mar 2018 00:29:20 +0100 Subject: [PATCH 067/108] Added Battalion 1944 --- .../config-lgsm/bt1944server/_default.cfg | 120 ++++++++++++++++++ lgsm/data/serverlist.csv | 1 + lgsm/functions/info_config.sh | 17 +++ lgsm/functions/info_messages.sh | 18 +++ lgsm/functions/install_config.sh | 7 + 5 files changed, 163 insertions(+) create mode 100644 lgsm/config-default/config-lgsm/bt1944server/_default.cfg diff --git a/lgsm/config-default/config-lgsm/bt1944server/_default.cfg b/lgsm/config-default/config-lgsm/bt1944server/_default.cfg new file mode 100644 index 000000000..82befb17c --- /dev/null +++ b/lgsm/config-default/config-lgsm/bt1944server/_default.cfg @@ -0,0 +1,120 @@ +################################## +######## 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://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters +ip="0.0.0.0" +port="7777" +queryport="7780" + +## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters +fn_parms(){ +parms="/Game/Maps/Final_Maps/Derailed?Game=/Script/ShooterGame.BombGameMode?listen -log -broadcastip=\"${ip}\" -PORT=${port} -QueryPort=${queryport} -defgameini=\"${servercfgfullpath}\"" +} + +#### LinuxGSM Settings #### + +## Notification Alerts +# (on|off) + +# More info | https://github.com/GameServerManagers/LinuxGSM/wiki/Alerts#more-info +postalert="off" +postdays="7" +posttarget="https://hastebin.com" + +# Discord Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Discord +discordalert="off" +discordwebhook="webhook" + +# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email +emailalert="off" +email="email@example.com" +emailfrom="" + +# IFTTT Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/IFTTT +iftttalert="off" +ifttttoken="accesstoken" +iftttevent="linuxgsm_alert" + +# Mailgun Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/mailgun +mailgunalert="off" +mailguntoken="accesstoken" +mailgundomain="example.com" +mailgunemailfrom="alert@example.com" +mailgunemail="email@myemail.com" + +# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet +pushbulletalert="off" +pushbullettoken="accesstoken" +channeltag="" + +# Pushover Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushover +pushoveralert="off" +pushovertoken="accesstoken" + +# Telegram Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Telegram +telegramalert="off" +telegramtoken="accesstoken" +telegramchatid="" + +## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update +updateonstart="off" + +## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup +maxbackups="4" +maxbackupdays="30" +stoponbackup="on" + +## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging +consolelogging="on" +logdays="7" + +#### LinuxGSM Advanced Settings #### + +## 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" +branch="" + +## LinuxGSM Server Details +# Do not edit +gamename="Battalion 1944" +engine="unreal4" + +#### Directories #### +# Edit with care + +## Server Specific Directories +systemdir="${serverfiles}/Linux/Battalion" +executabledir="${systemdir}/Binaries/Linux" +executable="./BattalionServer" +servercfgdir="${systemdir}/Saved/Config/LinuxServer" +servercfg="${servicename}.ini" +servercfgdefault="DefaultGame.ini" +servercfgfullpath="${servercfgdir}/${servercfg}" + +## Backup Directory +backupdir="${lgsmdir}/backup" + +## Logging Directories +logdir="${rootdir}/log" +gamelogdir="${systemdir}/Saved/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 a797e07bd..7f81f81fb 100644 --- a/lgsm/data/serverlist.csv +++ b/lgsm/data/serverlist.csv @@ -7,6 +7,7 @@ bd,bdserver,Base Defense bmdm,bmdmserver,Black Mesa: Deathmatch bs,bsserver,Blade Symphony bb2,bb2server,BrainBread 2 +bt1944,bt1944server,Battalion 1944 cod,codserver,Call of Duty cod2,cod2server,Call of Duty 2 cod4,cod4server,Call of Duty 4 diff --git a/lgsm/functions/info_config.sh b/lgsm/functions/info_config.sh index 5a9cc784d..5dd54a586 100644 --- a/lgsm/functions/info_config.sh +++ b/lgsm/functions/info_config.sh @@ -108,6 +108,20 @@ fn_info_config_ballistic_overkill(){ fi } +fn_info_config_battalion1944(){ + if [ ! -f "${servercfgfullpath}" ]; then + servername="${unavailable}" + serverpassword="${unavailable}" + else + servername=$(grep "ServerName" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^--/d' -e 's/ServerName//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + serverpassword=$(grep "Password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^--/d' -e 's/Password//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + + # Not Set + servername=${servername:-"NOT SET"} + serverpassword=${serverpassword:-"NOT SET"} + fi +} + fn_info_config_bf1942(){ if [ ! -f "${servercfgfullpath}" ]; then servername="${unavailable}" @@ -916,6 +930,9 @@ if [ "${gamename}" == "ARK: Survivial Evolved" ]; then # Ballistic Overkill elif [ "${gamename}" == "Ballistic Overkill" ]; then fn_info_config_ballistic_overkill +# Battalion 1944 +elif [ "${gamename}" == "Battalion 1944" ]; then + fn_info_config_battalion1944 # Battlefield: 1942 elif [ "${gamename}" == "Battlefield: 1942" ]; then fn_info_config_bf1942 diff --git a/lgsm/functions/info_messages.sh b/lgsm/functions/info_messages.sh index 5a1fb2a1d..50bd810aa 100644 --- a/lgsm/functions/info_messages.sh +++ b/lgsm/functions/info_messages.sh @@ -507,6 +507,22 @@ fn_info_message_ballisticoverkill(){ } | column -s $'\t' -t } +fn_info_message_battalion1944(){ + echo -e "netstat -atunp | grep BattalionServ" + echo -e "" + { + echo -e "DESCRIPTION\tDIRECTION\tPORT\tPROTOCOL" + echo -e "> Game\tINBOUND\t${port}\tudp" + # Don't do arithmetics if ever the port wasn't a numeric value + # unconfirmed - http://wiki.battaliongame.com/Community_Servers#Firewalls_.2F_Port_Forwarding + if [ "${port}" -eq "${port}" ]; then + echo -e "> Steam\tINBOUND\t$((port+1))\tudp" + echo -e "> Unused\tINBOUND\t$((port+2))\ttcp" + fi + echo -e "> Query\tINBOUND\t${queryport}\tudp" + } | column -s $'\t' -t +} + fn_info_message_cod(){ echo -e "netstat -atunp | grep cod_lnxded" echo -e "" @@ -997,6 +1013,8 @@ fn_info_message_select_engine(){ fn_info_message_ark elif [ "${gamename}" == "Ballistic Overkill" ]; then fn_info_message_ballisticoverkill + elif [ "${gamename}" == "Battalion 1944" ]; then + fn_info_message_battalion1944 elif [ "${gamename}" == "Call of Duty" ]; then fn_info_message_cod elif [ "${gamename}" == "Call of Duty: United Offensive" ]; then diff --git a/lgsm/functions/install_config.sh b/lgsm/functions/install_config.sh index 0fb611253..d420e92c6 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -160,6 +160,13 @@ elif [ "${gamename}" == "Base Defense" ]; then fn_fetch_default_config fn_default_config_remote fn_set_config_vars +elif [ "${gamename}" == "Battalion 1944" ]; then + gamedirname="Battalion1944" + fn_check_cfgdir + array_configs+=( DefaultGame.ini ) + fn_fetch_default_config + fn_default_config_remote + fn_set_config_vars elif [ "${gamename}" == "Battlefield: 1942" ]; then gamedirname="Battlefield1942" array_configs+=( serversettings.con ) From ae283510d9dd21e0fd8af809b3765d31cf01d159 Mon Sep 17 00:00:00 2001 From: Marvin Lehmann Date: Sat, 17 Mar 2018 00:54:53 +0100 Subject: [PATCH 068/108] Set required glibc version for Battalion 1944 --- lgsm/functions/info_glibc.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lgsm/functions/info_glibc.sh b/lgsm/functions/info_glibc.sh index 1e11cf15a..49d537b60 100644 --- a/lgsm/functions/info_glibc.sh +++ b/lgsm/functions/info_glibc.sh @@ -12,6 +12,9 @@ if [ "${gamename}" == "ARK: Survival Evolved" ]; then elif [ "${gamename}" == "Ballistic Overkill" ]; then glibcrequired="2.15" glibcfix="yes" +elif [ "${gamename}" == "Battalion 1944" ]; then + glibcrequired="2.17" + glibcfix="no" elif [ "${gamename}" == "Base Defense" ]; then glibcrequired="2.14" glibcfix="no" From b79819b96896c49f5a7969ba9b2068e1f1dd0ecf Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 17 Mar 2018 00:41:21 +0000 Subject: [PATCH 069/108] SC2129 --- lgsm/functions/install_ts3db.sh | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/lgsm/functions/install_ts3db.sh b/lgsm/functions/install_ts3db.sh index 1509c8f62..fc200fa79 100644 --- a/lgsm/functions/install_ts3db.sh +++ b/lgsm/functions/install_ts3db.sh @@ -26,19 +26,21 @@ fn_install_ts3db_mariadb(){ echo "Configuring ${gamename} Server for MariaDB/MySQL" echo "=================================" sleep 1 - read -p "Enter MariaDB hostname: " mariahostname - read -p "Enter MariaDB port: " mariaport - read -p "Enter MariaDB username: " mariausername - read -p "Enter MariaDB password: " mariapassword - read -p "Enter MariaDB database name: " mariadbname + read -rp "Enter MariaDB hostname: " mariahostname + read -rp "Enter MariaDB port: " mariaport + read -rp "Enter MariaDB username: " mariausername + read -rp "Enter MariaDB password: " mariapassword + read -rp "Enter MariaDB database name: " mariadbname + { echo "updating config." - echo "[config]" >> ${servercfgdir}/ts3db_mariadb.ini - echo "host='${mariahostname}'" >> ${servercfgdir}/ts3db_mariadb.ini - echo "port='${mariaport}'" >> ${servercfgdir}/ts3db_mariadb.ini - echo "username='${mariausername}'" >> ${servercfgdir}/ts3db_mariadb.ini - echo "password='${mariapassword}'" >> ${servercfgdir}/ts3db_mariadb.ini - echo "database='${mariadbname}'" >> ${servercfgdir}/ts3db_mariadb.ini - echo "socket=" >> ${servercfgdir}/ts3db_mariadb.ini + echo "[config]" + echo "host='${mariahostname}'" + echo "port='${mariaport}'" + echo "username='${mariausername}'" + echo "password='${mariapassword}'" + echo "database='${mariadbname}'" + echo "socket=" + } >> "${servercfgdir}/ts3db_mariadb.ini" sed -i "s/dbplugin=ts3db_sqlite3/dbplugin=ts3db_mariadb/g" "${servercfgfullpath}" sed -i "s/dbpluginparameter=/dbpluginparameter=ts3db_mariadb.ini/g" "${servercfgfullpath}" sed -i "s/dbsqlcreatepath=create_sqlite\//dbsqlcreatepath=create_mariadb\//g" "${servercfgfullpath}" From abf3cd12ca957d4ecf6cb0e924a407682abdff16 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 17 Mar 2018 00:42:13 +0000 Subject: [PATCH 070/108] SC2164 --- lgsm/functions/install_ts3db.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/install_ts3db.sh b/lgsm/functions/install_ts3db.sh index fc200fa79..b5ec4b3a9 100644 --- a/lgsm/functions/install_ts3db.sh +++ b/lgsm/functions/install_ts3db.sh @@ -71,7 +71,7 @@ echo "=================================" sleep 1 echo "IMPORANT! Save these details for later." sleep 1 -cd "${executabledir}" +cd "${executabledir}" || exit ./ts3server_startscript.sh start inifile=ts3-server.ini sleep 5 ./ts3server_startscript.sh stop From e384b6c77a9c0ed8558432f36e6ad84de3126d4c Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 17 Mar 2018 00:43:26 +0000 Subject: [PATCH 071/108] SC2086 --- lgsm/functions/install_ts3db.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/install_ts3db.sh b/lgsm/functions/install_ts3db.sh index b5ec4b3a9..7cfc3205f 100644 --- a/lgsm/functions/install_ts3db.sh +++ b/lgsm/functions/install_ts3db.sh @@ -14,7 +14,7 @@ fn_install_ts3db_mariadb(){ echo "checking if libmariadb2 is installed" echo "=================================" sleep 1 - ldd ${serverfiles}/libts3db_mariadb.so | grep "libmariadb.so.2 => not found" + ldd "${serverfiles}/libts3db_mariadb.so" | grep "libmariadb.so.2 => not found" if [ $? -eq 0 ]; then echo "libmariadb2 not installed. Please install it first." echo "exiting..." From f09769bd21de143591669ba1ef23ad4b39e2874b Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 17 Mar 2018 00:46:59 +0000 Subject: [PATCH 072/108] SC2062 --- lgsm/functions/command_stop.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_stop.sh b/lgsm/functions/command_stop.sh index 46c1d55ed..44bf94359 100644 --- a/lgsm/functions/command_stop.sh +++ b/lgsm/functions/command_stop.sh @@ -219,7 +219,7 @@ 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}' |\ + grep ":${queryport}[[:space:]]" | rev | awk '{print $1}' |\ rev | cut -d\/ -f1) # # check for a valid pid From b6acd560637ed2f36f4d54f8dc16ea2dcf187517 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 17 Mar 2018 00:47:42 +0000 Subject: [PATCH 073/108] SC2046 --- lgsm/functions/command_stop.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_stop.sh b/lgsm/functions/command_stop.sh index 44bf94359..4740f2f92 100644 --- a/lgsm/functions/command_stop.sh +++ b/lgsm/functions/command_stop.sh @@ -226,7 +226,7 @@ fn_stop_ark(){ 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 + if [ "${pid}" -gt 1 ]&&[ "${pid}" -le "$(cat "/proc/sys/kernel/pid_max")" ]; then fn_print_dots "Process still bound. Awaiting graceful exit: ${pidcheck}" sleep 1 else From 6438fff13a71973d67addcc53d55d2cc716af0e9 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 17 Mar 2018 00:49:53 +0000 Subject: [PATCH 074/108] SC2143 --- lgsm/functions/install_config.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lgsm/functions/install_config.sh b/lgsm/functions/install_config.sh index 00fdd5431..190afbcd3 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -61,8 +61,7 @@ fn_set_config_vars(){ echo "changing hostname." fn_script_log_info "changing hostname." sleep 1 - - if [ "$(grep SERVERNAME=SERVERNAME \"${lgsmdir}/config-default/config-game/${config}\" 2>/dev/null)" ]; then + if grep -q "SERVERNAME=SERVERNAME" "${lgsmdir}/config-default/config-game/${config}" 2>/dev/null; then sed -i "s/SERVERNAME=SERVERNAME/SERVERNAME=${servername}/g" "${servercfgfullpath}" else sed -i "s/SERVERNAME/${servername}/g" "${servercfgfullpath}" From dd902e6431cc82280b4765523fac4b55488e2838 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 17 Mar 2018 00:51:56 +0000 Subject: [PATCH 075/108] SC2086 --- lgsm/functions/check_glibc.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/check_glibc.sh b/lgsm/functions/check_glibc.sh index 2690eb7c5..3a99b009b 100644 --- a/lgsm/functions/check_glibc.sh +++ b/lgsm/functions/check_glibc.sh @@ -17,7 +17,7 @@ elif [ "${glibcrequired}" == "UNKNOWN" ]; then fn_print_error_nl "Glibc fix: ${red}${glibcrequired}${default}" echo -e " * glibc required: ${red}${glibcrequired}${default}" echo -e " * glibc installed: ${glibcversion}" -elif [ "$(printf '%s\n'${glibcrequired}'\n' ${glibcversion} | sort -V | head -n 1)" != "${glibcrequired}" ]; then +elif [ "$(printf "%s\n'${glibcrequired}'\n" "${glibcversion}" | sort -V | head -n 1)" != "${glibcrequired}" ]; then if [ "${glibcfix}" == "yes" ]; then if [ "${function_selfname}" != "command_install.sh" ]; then fn_print_dots "Glibc fix" From a576e0248a6d3e33bc4917b6a8097b84572748b7 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 17 Mar 2018 00:52:10 +0000 Subject: [PATCH 076/108] SC2164 --- lgsm/functions/update_steamcmd.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/update_steamcmd.sh b/lgsm/functions/update_steamcmd.sh index fc9aa8cd4..1b0663df0 100644 --- a/lgsm/functions/update_steamcmd.sh +++ b/lgsm/functions/update_steamcmd.sh @@ -165,7 +165,7 @@ fn_update_steamcmd_check(){ fi # Gets availablebuild info - cd "${steamcmddir}" + cd "${steamcmddir}" || exit availablebuild=$(./steamcmd.sh +login "${steamuser}" "${steampass}" +app_info_update 1 +app_info_print "${appid}" +app_info_print "${appid}" +quit | sed -n '/branch/,$p' | grep -m 1 buildid | tr -cd '[:digit:]') if [ -z "${availablebuild}" ]; then fn_print_fail "Checking for update: SteamCMD" From 64701aceae15c28f5d96d18e3fe8140fd0f89981 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 17 Mar 2018 20:12:13 +0000 Subject: [PATCH 077/108] Shellcheck code tidy SC2164 SC2086 SC2062 SC2046 SC2143 SC2086 SC2164 --- lgsm/functions/check_glibc.sh | 2 +- lgsm/functions/command_stop.sh | 4 ++-- lgsm/functions/install_config.sh | 3 +-- lgsm/functions/install_ts3db.sh | 30 ++++++++++++++++-------------- lgsm/functions/update_steamcmd.sh | 2 +- 5 files changed, 21 insertions(+), 20 deletions(-) diff --git a/lgsm/functions/check_glibc.sh b/lgsm/functions/check_glibc.sh index 2690eb7c5..3a99b009b 100644 --- a/lgsm/functions/check_glibc.sh +++ b/lgsm/functions/check_glibc.sh @@ -17,7 +17,7 @@ elif [ "${glibcrequired}" == "UNKNOWN" ]; then fn_print_error_nl "Glibc fix: ${red}${glibcrequired}${default}" echo -e " * glibc required: ${red}${glibcrequired}${default}" echo -e " * glibc installed: ${glibcversion}" -elif [ "$(printf '%s\n'${glibcrequired}'\n' ${glibcversion} | sort -V | head -n 1)" != "${glibcrequired}" ]; then +elif [ "$(printf "%s\n'${glibcrequired}'\n" "${glibcversion}" | sort -V | head -n 1)" != "${glibcrequired}" ]; then if [ "${glibcfix}" == "yes" ]; then if [ "${function_selfname}" != "command_install.sh" ]; then fn_print_dots "Glibc fix" diff --git a/lgsm/functions/command_stop.sh b/lgsm/functions/command_stop.sh index 46c1d55ed..4740f2f92 100644 --- a/lgsm/functions/command_stop.sh +++ b/lgsm/functions/command_stop.sh @@ -219,14 +219,14 @@ 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}' |\ + grep ":${queryport}[[:space:]]" | rev | awk '{print $1}' |\ rev | cut -d\/ -f1) # # 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 + if [ "${pid}" -gt 1 ]&&[ "${pid}" -le "$(cat "/proc/sys/kernel/pid_max")" ]; then fn_print_dots "Process still bound. Awaiting graceful exit: ${pidcheck}" sleep 1 else diff --git a/lgsm/functions/install_config.sh b/lgsm/functions/install_config.sh index 00fdd5431..190afbcd3 100644 --- a/lgsm/functions/install_config.sh +++ b/lgsm/functions/install_config.sh @@ -61,8 +61,7 @@ fn_set_config_vars(){ echo "changing hostname." fn_script_log_info "changing hostname." sleep 1 - - if [ "$(grep SERVERNAME=SERVERNAME \"${lgsmdir}/config-default/config-game/${config}\" 2>/dev/null)" ]; then + if grep -q "SERVERNAME=SERVERNAME" "${lgsmdir}/config-default/config-game/${config}" 2>/dev/null; then sed -i "s/SERVERNAME=SERVERNAME/SERVERNAME=${servername}/g" "${servercfgfullpath}" else sed -i "s/SERVERNAME/${servername}/g" "${servercfgfullpath}" diff --git a/lgsm/functions/install_ts3db.sh b/lgsm/functions/install_ts3db.sh index 1509c8f62..7cfc3205f 100644 --- a/lgsm/functions/install_ts3db.sh +++ b/lgsm/functions/install_ts3db.sh @@ -14,7 +14,7 @@ fn_install_ts3db_mariadb(){ echo "checking if libmariadb2 is installed" echo "=================================" sleep 1 - ldd ${serverfiles}/libts3db_mariadb.so | grep "libmariadb.so.2 => not found" + ldd "${serverfiles}/libts3db_mariadb.so" | grep "libmariadb.so.2 => not found" if [ $? -eq 0 ]; then echo "libmariadb2 not installed. Please install it first." echo "exiting..." @@ -26,19 +26,21 @@ fn_install_ts3db_mariadb(){ echo "Configuring ${gamename} Server for MariaDB/MySQL" echo "=================================" sleep 1 - read -p "Enter MariaDB hostname: " mariahostname - read -p "Enter MariaDB port: " mariaport - read -p "Enter MariaDB username: " mariausername - read -p "Enter MariaDB password: " mariapassword - read -p "Enter MariaDB database name: " mariadbname + read -rp "Enter MariaDB hostname: " mariahostname + read -rp "Enter MariaDB port: " mariaport + read -rp "Enter MariaDB username: " mariausername + read -rp "Enter MariaDB password: " mariapassword + read -rp "Enter MariaDB database name: " mariadbname + { echo "updating config." - echo "[config]" >> ${servercfgdir}/ts3db_mariadb.ini - echo "host='${mariahostname}'" >> ${servercfgdir}/ts3db_mariadb.ini - echo "port='${mariaport}'" >> ${servercfgdir}/ts3db_mariadb.ini - echo "username='${mariausername}'" >> ${servercfgdir}/ts3db_mariadb.ini - echo "password='${mariapassword}'" >> ${servercfgdir}/ts3db_mariadb.ini - echo "database='${mariadbname}'" >> ${servercfgdir}/ts3db_mariadb.ini - echo "socket=" >> ${servercfgdir}/ts3db_mariadb.ini + echo "[config]" + echo "host='${mariahostname}'" + echo "port='${mariaport}'" + echo "username='${mariausername}'" + echo "password='${mariapassword}'" + echo "database='${mariadbname}'" + echo "socket=" + } >> "${servercfgdir}/ts3db_mariadb.ini" sed -i "s/dbplugin=ts3db_sqlite3/dbplugin=ts3db_mariadb/g" "${servercfgfullpath}" sed -i "s/dbpluginparameter=/dbpluginparameter=ts3db_mariadb.ini/g" "${servercfgfullpath}" sed -i "s/dbsqlcreatepath=create_sqlite\//dbsqlcreatepath=create_mariadb\//g" "${servercfgfullpath}" @@ -69,7 +71,7 @@ echo "=================================" sleep 1 echo "IMPORANT! Save these details for later." sleep 1 -cd "${executabledir}" +cd "${executabledir}" || exit ./ts3server_startscript.sh start inifile=ts3-server.ini sleep 5 ./ts3server_startscript.sh stop diff --git a/lgsm/functions/update_steamcmd.sh b/lgsm/functions/update_steamcmd.sh index fc9aa8cd4..1b0663df0 100644 --- a/lgsm/functions/update_steamcmd.sh +++ b/lgsm/functions/update_steamcmd.sh @@ -165,7 +165,7 @@ fn_update_steamcmd_check(){ fi # Gets availablebuild info - cd "${steamcmddir}" + cd "${steamcmddir}" || exit availablebuild=$(./steamcmd.sh +login "${steamuser}" "${steampass}" +app_info_update 1 +app_info_print "${appid}" +app_info_print "${appid}" +quit | sed -n '/branch/,$p' | grep -m 1 buildid | tr -cd '[:digit:]') if [ -z "${availablebuild}" ]; then fn_print_fail "Checking for update: SteamCMD" From e51ebe41da7bcde682a68c9d8734bc3925fb4edf Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 17 Mar 2018 20:32:51 +0000 Subject: [PATCH 078/108] de-activating test 7.0 backup until issue #1839 us fixed --- tests/tests_jc2server.sh | 3 ++- tests/tests_ts3server.sh | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index 9517cc9ac..600afcd16 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -787,7 +787,8 @@ echo "run a backup." echo "Command: ./jc2server backup" requiredstatus="ONLINE" fn_setstatus -(command_backup.sh) +echo "test de-activated until issue #1839 fixed" +#(command_backup.sh) fn_test_result_pass echo "" diff --git a/tests/tests_ts3server.sh b/tests/tests_ts3server.sh index 2c93c27c4..ebfbdb696 100644 --- a/tests/tests_ts3server.sh +++ b/tests/tests_ts3server.sh @@ -676,7 +676,8 @@ echo "run a backup." echo "Command: ./jc2server backup" requiredstatus="ONLINE" fn_setstatus -(command_backup.sh) +echo "test de-activated until issue #1839 fixed" +#(command_backup.sh) fn_test_result_pass echo "" From 58c8aa6a367b25104d356346ac9201c1cb73dd50 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 17 Mar 2018 22:34:09 +0000 Subject: [PATCH 079/108] Added unreal4 query --- lgsm/functions/command_monitor.sh | 2 +- lgsm/functions/gsquery.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/command_monitor.sh b/lgsm/functions/command_monitor.sh index 6a0b25cac..cf1cbdd5e 100644 --- a/lgsm/functions/command_monitor.sh +++ b/lgsm/functions/command_monitor.sh @@ -79,7 +79,7 @@ fn_monitor_tmux(){ fn_print_ok_eol_nl fn_script_log_pass "Checking session: OK" # runs gsquery check on game with specific engines. - local allowed_engines_array=( avalanche2.0 avalanche3.0 goldsource idtech2 idtech3 idtech3_ql iw2.0 iw3.0 madness quake refractor realvirtuality source spark starbound unity3d unreal unreal2 ) + local allowed_engines_array=( avalanche2.0 avalanche3.0 goldsource idtech2 idtech3 idtech3_ql iw2.0 iw3.0 madness quake refractor realvirtuality source spark starbound unity3d unreal unreal2 unreal4 ) for allowed_engine in "${allowed_engines_array[@]}" do if [ "${allowed_engine}" == "starbound" ]; then diff --git a/lgsm/functions/gsquery.py b/lgsm/functions/gsquery.py index 55741668e..18123bfe8 100644 --- a/lgsm/functions/gsquery.py +++ b/lgsm/functions/gsquery.py @@ -17,7 +17,7 @@ class PythonGSQ: self.server_response_timeout = 5 self.default_buffer_length = 1024 # - sourcequery=[ 'avalanche3.0','madness','quakelive','realvirtuality','refractor','source','goldsource','spark','starbound','unity3d'] + sourcequery=[ 'avalanche3.0','madness','quakelive','realvirtuality','refractor','source','goldsource','spark','starbound','unity3d', 'unreal4' ] idtech3query=['idtech3','quake','iw3.0'] idtech2query=['idtech2','iw2.0'] if self.option.engine in sourcequery: From 0e6198a91881edd9b8c7d2fa6fc676428a5f78a7 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 18 Mar 2018 11:23:09 +0000 Subject: [PATCH 080/108] List function files that the commands run though --- tests/tests_jc2server.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index 600afcd16..e85c32fc3 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -484,6 +484,7 @@ echo "Enable dev-debug" echo "" (command_dev_debug.sh) fn_test_result_pass +grep "functionfile=" echo "1.0 - start - no files" echo "=================================" @@ -493,6 +494,7 @@ echo "Command: ./jc2server start" echo "" (command_start.sh) fn_test_result_fail +grep "functionfile=" echo "" echo "1.1 - getopt" @@ -503,6 +505,7 @@ echo "Command: ./jc2server" echo "" (core_getopt.sh) fn_test_result_pass +grep "functionfile=" echo "" echo "1.2 - getopt with incorrect args" @@ -514,6 +517,7 @@ echo "" getopt="abc123" (core_getopt.sh) fn_test_result_fail +grep "functionfile=" echo "" echo "2.0 - install" @@ -523,6 +527,7 @@ echo "install ${gamename} server." echo "Command: ./jc2server auto-install" (fn_autoinstall) fn_test_result_pass +grep "functionfile=" echo "" echo "3.1 - start" @@ -534,6 +539,7 @@ requiredstatus="OFFLINE" fn_setstatus (command_start.sh) fn_test_result_pass +grep "functionfile=" echo "" echo "3.2 - start - online" From 57ce68fa26ec249a4a73f66cf2900d56e95a8620 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 18 Mar 2018 11:26:39 +0000 Subject: [PATCH 081/108] forgot to add file --- tests/tests_jc2server.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index e85c32fc3..9e9dee2ab 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -484,7 +484,7 @@ echo "Enable dev-debug" echo "" (command_dev_debug.sh) fn_test_result_pass -grep "functionfile=" +grep "functionfile=" .dev-debug echo "1.0 - start - no files" echo "=================================" @@ -494,7 +494,7 @@ echo "Command: ./jc2server start" echo "" (command_start.sh) fn_test_result_fail -grep "functionfile=" +grep "functionfile=" .dev-debug echo "" echo "1.1 - getopt" @@ -505,7 +505,7 @@ echo "Command: ./jc2server" echo "" (core_getopt.sh) fn_test_result_pass -grep "functionfile=" +grep "functionfile=" .dev-debug echo "" echo "1.2 - getopt with incorrect args" @@ -517,7 +517,7 @@ echo "" getopt="abc123" (core_getopt.sh) fn_test_result_fail -grep "functionfile=" +grep "functionfile=" .dev-debug echo "" echo "2.0 - install" @@ -527,7 +527,7 @@ echo "install ${gamename} server." echo "Command: ./jc2server auto-install" (fn_autoinstall) fn_test_result_pass -grep "functionfile=" +grep "functionfile=" .dev-debug echo "" echo "3.1 - start" @@ -539,7 +539,7 @@ requiredstatus="OFFLINE" fn_setstatus (command_start.sh) fn_test_result_pass -grep "functionfile=" +grep "functionfile=" .dev-debug echo "" echo "3.2 - start - online" From d427c2b198d22feaa5776dbe473f550da6812007 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 18 Mar 2018 11:29:26 +0000 Subject: [PATCH 082/108] corrected filename --- tests/tests_jc2server.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index 9e9dee2ab..2ab6e2160 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -484,7 +484,7 @@ echo "Enable dev-debug" echo "" (command_dev_debug.sh) fn_test_result_pass -grep "functionfile=" .dev-debug +grep "functionfile=" dev-debug.log echo "1.0 - start - no files" echo "=================================" @@ -494,7 +494,7 @@ echo "Command: ./jc2server start" echo "" (command_start.sh) fn_test_result_fail -grep "functionfile=" .dev-debug +grep "functionfile=" dev-debug.log echo "" echo "1.1 - getopt" @@ -505,7 +505,7 @@ echo "Command: ./jc2server" echo "" (core_getopt.sh) fn_test_result_pass -grep "functionfile=" .dev-debug +grep "functionfile=" dev-debug.log echo "" echo "1.2 - getopt with incorrect args" @@ -517,7 +517,7 @@ echo "" getopt="abc123" (core_getopt.sh) fn_test_result_fail -grep "functionfile=" .dev-debug +grep "functionfile=" dev-debug.log echo "" echo "2.0 - install" @@ -527,7 +527,7 @@ echo "install ${gamename} server." echo "Command: ./jc2server auto-install" (fn_autoinstall) fn_test_result_pass -grep "functionfile=" .dev-debug +grep "functionfile=" dev-debug.log echo "" echo "3.1 - start" @@ -539,7 +539,7 @@ requiredstatus="OFFLINE" fn_setstatus (command_start.sh) fn_test_result_pass -grep "functionfile=" .dev-debug +grep "functionfile=" dev-debug.log echo "" echo "3.2 - start - online" From 592e6e4c9d070430fc3e6020c04cf958c5874807 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 18 Mar 2018 11:31:41 +0000 Subject: [PATCH 083/108] test --- tests/tests_jc2server.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index 2ab6e2160..9e6e3d7dd 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -485,7 +485,8 @@ echo "" (command_dev_debug.sh) fn_test_result_pass grep "functionfile=" dev-debug.log - +echo "################## LS -AL" +ls -al echo "1.0 - start - no files" echo "=================================" echo "Description:" From 3bcf2642287b834530cc43da7afebc8c296b3945 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 18 Mar 2018 11:38:42 +0000 Subject: [PATCH 084/108] trying another location --- tests/tests_jc2server.sh | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index 9e6e3d7dd..bfebce3a3 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -11,7 +11,7 @@ travistest="1" # Debugging if [ -f ".dev-debug" ]; then - exec 5>dev-debug.log + exec 5>"tests/dev-debug.log" BASH_XTRACEFD="5" set -x fi @@ -484,9 +484,11 @@ echo "Enable dev-debug" echo "" (command_dev_debug.sh) fn_test_result_pass -grep "functionfile=" dev-debug.log +grep "functionfile=" "tests/dev-debug.log" echo "################## LS -AL" ls -al +echo "################## pwd" +pwd echo "1.0 - start - no files" echo "=================================" echo "Description:" @@ -495,7 +497,7 @@ echo "Command: ./jc2server start" echo "" (command_start.sh) fn_test_result_fail -grep "functionfile=" dev-debug.log +grep "functionfile=" "tests/dev-debug.log" echo "" echo "1.1 - getopt" @@ -506,7 +508,7 @@ echo "Command: ./jc2server" echo "" (core_getopt.sh) fn_test_result_pass -grep "functionfile=" dev-debug.log +grep "functionfile=" "tests/dev-debug.log" echo "" echo "1.2 - getopt with incorrect args" @@ -518,7 +520,7 @@ echo "" getopt="abc123" (core_getopt.sh) fn_test_result_fail -grep "functionfile=" dev-debug.log +grep "functionfile=" "tests/dev-debug.log" echo "" echo "2.0 - install" @@ -528,7 +530,7 @@ echo "install ${gamename} server." echo "Command: ./jc2server auto-install" (fn_autoinstall) fn_test_result_pass -grep "functionfile=" dev-debug.log +grep "functionfile=" "tests/dev-debug.log" echo "" echo "3.1 - start" @@ -540,7 +542,7 @@ requiredstatus="OFFLINE" fn_setstatus (command_start.sh) fn_test_result_pass -grep "functionfile=" dev-debug.log +grep "functionfile=" "tests/dev-debug.log" echo "" echo "3.2 - start - online" From 71ba149da1b14d8697a0467b5c516346c6110383 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 18 Mar 2018 11:42:43 +0000 Subject: [PATCH 085/108] building tree --- .travis.yml | 1 + tests/tests_jc2server.sh | 7 ++++--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 1ae96fc9c..52eda9819 100644 --- a/.travis.yml +++ b/.travis.yml @@ -31,6 +31,7 @@ addons: - net-tools - iproute2 - shellcheck + - tree jobs: include: diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index bfebce3a3..377da24a2 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -485,8 +485,8 @@ echo "" (command_dev_debug.sh) fn_test_result_pass grep "functionfile=" "tests/dev-debug.log" -echo "################## LS -AL" -ls -al +echo "################## tree" +tree echo "################## pwd" pwd echo "1.0 - start - no files" @@ -543,7 +543,8 @@ fn_setstatus (command_start.sh) fn_test_result_pass grep "functionfile=" "tests/dev-debug.log" - +echo "############## tree" +tree echo "" echo "3.2 - start - online" echo "=================================" From d7ee9c15e959a2e0e098d5afc5e0a0b732ffc0c4 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 18 Mar 2018 11:47:40 +0000 Subject: [PATCH 086/108] test --- lgsm/functions/command_dev_debug.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/lgsm/functions/command_dev_debug.sh b/lgsm/functions/command_dev_debug.sh index 7c831681a..1a74ef983 100644 --- a/lgsm/functions/command_dev_debug.sh +++ b/lgsm/functions/command_dev_debug.sh @@ -13,6 +13,7 @@ if [ -f "${rootdir}/.dev-debug" ]; then fn_print_ok_nl "Disabled dev-debug" fn_script_log_info "Disabled dev-debug" else + echo "########## ${rootdir}/.dev-debug" date > "${rootdir}/.dev-debug" fn_print_ok_nl "Enabled dev-debug" fn_script_log_info "Enabled dev-debug" From 04afe6bdd9d1cabc3c3c1c80b52f1eea39903e98 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 18 Mar 2018 11:50:31 +0000 Subject: [PATCH 087/108] test --- lgsm/functions/command_dev_debug.sh | 1 - tests/tests_jc2server.sh | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_dev_debug.sh b/lgsm/functions/command_dev_debug.sh index 1a74ef983..7c831681a 100644 --- a/lgsm/functions/command_dev_debug.sh +++ b/lgsm/functions/command_dev_debug.sh @@ -13,7 +13,6 @@ if [ -f "${rootdir}/.dev-debug" ]; then fn_print_ok_nl "Disabled dev-debug" fn_script_log_info "Disabled dev-debug" else - echo "########## ${rootdir}/.dev-debug" date > "${rootdir}/.dev-debug" fn_print_ok_nl "Enabled dev-debug" fn_script_log_info "Enabled dev-debug" diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index 377da24a2..810aa567d 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -484,6 +484,7 @@ echo "Enable dev-debug" echo "" (command_dev_debug.sh) fn_test_result_pass +echo "########## ${rootdir}/.dev-debug" grep "functionfile=" "tests/dev-debug.log" echo "################## tree" tree From fbfd3b68bfc55f94fb023af990e085947fab0e92 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 18 Mar 2018 11:54:23 +0000 Subject: [PATCH 088/108] test --- tests/tests_jc2server.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index 810aa567d..623565338 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -484,6 +484,8 @@ echo "Enable dev-debug" echo "" (command_dev_debug.sh) fn_test_result_pass +date > tests/.dev-debug + echo "########## ${rootdir}/.dev-debug" grep "functionfile=" "tests/dev-debug.log" echo "################## tree" From 73f7ae65a7d93136f05f2002e056eb914cda8ecf Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 18 Mar 2018 11:57:20 +0000 Subject: [PATCH 089/108] pwd --- tests/tests_jc2server.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index 623565338..f511f640c 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -484,6 +484,8 @@ echo "Enable dev-debug" echo "" (command_dev_debug.sh) fn_test_result_pass +pwd +echo "####### date > tests/.dev-debug" date > tests/.dev-debug echo "########## ${rootdir}/.dev-debug" From 71ab87c3e23f5460cb66c7611b8bf160c64fb77f Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 18 Mar 2018 12:01:34 +0000 Subject: [PATCH 090/108] test --- tests/tests_jc2server.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index f511f640c..6336cf900 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -485,7 +485,8 @@ echo "" (command_dev_debug.sh) fn_test_result_pass pwd -echo "####### date > tests/.dev-debug" +echo "####### touch & date > tests/.dev-debug" +touch tests/.dev-debug date > tests/.dev-debug echo "########## ${rootdir}/.dev-debug" From 823ec71a08dac62241eeee876e2e2aeb2031429d Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 18 Mar 2018 12:05:35 +0000 Subject: [PATCH 091/108] absolute path --- tests/tests_jc2server.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index 6336cf900..99efd3e89 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -485,9 +485,9 @@ echo "" (command_dev_debug.sh) fn_test_result_pass pwd -echo "####### touch & date > tests/.dev-debug" -touch tests/.dev-debug -date > tests/.dev-debug +echo "####### touch & date > /home/travis/build/GameServerManagers/LinuxGSM/tests/.dev-debug" +touch /home/travis/build/GameServerManagers/LinuxGSM/tests/.dev-debug +date > /home/travis/build/GameServerManagers/LinuxGSM/tests/.dev-debug echo "########## ${rootdir}/.dev-debug" grep "functionfile=" "tests/dev-debug.log" From 0f9c85c63f868841c360d69b26d005dc11534197 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 18 Mar 2018 12:08:35 +0000 Subject: [PATCH 092/108] builf path --- tests/tests_jc2server.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index 99efd3e89..d109140c3 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -485,6 +485,8 @@ echo "" (command_dev_debug.sh) fn_test_result_pass pwd +echo "######travis build path" +echo "${TRAVIS_BUILD_DIR}" echo "####### touch & date > /home/travis/build/GameServerManagers/LinuxGSM/tests/.dev-debug" touch /home/travis/build/GameServerManagers/LinuxGSM/tests/.dev-debug date > /home/travis/build/GameServerManagers/LinuxGSM/tests/.dev-debug From cc9f924052d1c15666fb7b27cf56ef942ea4e563 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 18 Mar 2018 12:09:37 +0000 Subject: [PATCH 093/108] date --- tests/tests_jc2server.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index d109140c3..75026f3a6 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -9,6 +9,7 @@ travistest="1" +date > "tests/dev-debug.log" # Debugging if [ -f ".dev-debug" ]; then exec 5>"tests/dev-debug.log" From 67c850a776a81f33d14e7a4ee08400217a234be9 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 18 Mar 2018 12:12:09 +0000 Subject: [PATCH 094/108] travis build dir --- tests/tests_jc2server.sh | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index 75026f3a6..faadd55cc 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -9,10 +9,10 @@ travistest="1" -date > "tests/dev-debug.log" +date > "${TRAVIS_BUILD_DIR}/dev-debug.log" # Debugging -if [ -f ".dev-debug" ]; then - exec 5>"tests/dev-debug.log" +if [ -f "${TRAVIS_BUILD_DIR}/.dev-debug" ]; then + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" BASH_XTRACEFD="5" set -x fi @@ -493,7 +493,7 @@ touch /home/travis/build/GameServerManagers/LinuxGSM/tests/.dev-debug date > /home/travis/build/GameServerManagers/LinuxGSM/tests/.dev-debug echo "########## ${rootdir}/.dev-debug" -grep "functionfile=" "tests/dev-debug.log" +grep "functionfile=" "${TRAVIS_BUILD_DIR}/dev-debug.log" echo "################## tree" tree echo "################## pwd" @@ -506,7 +506,7 @@ echo "Command: ./jc2server start" echo "" (command_start.sh) fn_test_result_fail -grep "functionfile=" "tests/dev-debug.log" +grep "functionfile=" "${TRAVIS_BUILD_DIR}/dev-debug.log" echo "" echo "1.1 - getopt" @@ -517,7 +517,7 @@ echo "Command: ./jc2server" echo "" (core_getopt.sh) fn_test_result_pass -grep "functionfile=" "tests/dev-debug.log" +grep "functionfile=" "${TRAVIS_BUILD_DIR}/dev-debug.log" echo "" echo "1.2 - getopt with incorrect args" @@ -529,7 +529,7 @@ echo "" getopt="abc123" (core_getopt.sh) fn_test_result_fail -grep "functionfile=" "tests/dev-debug.log" +grep "functionfile=" "${TRAVIS_BUILD_DIR}/dev-debug.log" echo "" echo "2.0 - install" @@ -539,7 +539,7 @@ echo "install ${gamename} server." echo "Command: ./jc2server auto-install" (fn_autoinstall) fn_test_result_pass -grep "functionfile=" "tests/dev-debug.log" +grep "functionfile=" "${TRAVIS_BUILD_DIR}/dev-debug.log" echo "" echo "3.1 - start" @@ -551,7 +551,7 @@ requiredstatus="OFFLINE" fn_setstatus (command_start.sh) fn_test_result_pass -grep "functionfile=" "tests/dev-debug.log" +grep "functionfile=" "${TRAVIS_BUILD_DIR}/dev-debug.log" echo "############## tree" tree echo "" From 35177a7e95f9e958d652bbd3bd94912b37f3d148 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 18 Mar 2018 12:19:50 +0000 Subject: [PATCH 095/108] moar tests --- tests/tests_jc2server.sh | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index faadd55cc..c9885821b 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -483,7 +483,11 @@ echo "=================================" echo "Description:" echo "Enable dev-debug" echo "" -(command_dev_debug.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_dev_debug.sh) fn_test_result_pass pwd echo "######travis build path" @@ -504,7 +508,11 @@ echo "Description:" echo "test script reaction to missing server files." echo "Command: ./jc2server start" echo "" -(command_start.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_start.sh) fn_test_result_fail grep "functionfile=" "${TRAVIS_BUILD_DIR}/dev-debug.log" @@ -515,7 +523,11 @@ echo "Description:" echo "displaying options messages." echo "Command: ./jc2server" echo "" -(core_getopt.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + core_getopt.sh) fn_test_result_pass grep "functionfile=" "${TRAVIS_BUILD_DIR}/dev-debug.log" From 07c5d2129a27c18882f7eee7c194dce860e5a208 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 18 Mar 2018 12:29:47 +0000 Subject: [PATCH 096/108] cat dev-debug.log --- tests/tests_jc2server.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index c9885821b..597e0e210 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -529,7 +529,7 @@ echo "" set -x core_getopt.sh) fn_test_result_pass -grep "functionfile=" "${TRAVIS_BUILD_DIR}/dev-debug.log" +cat "${TRAVIS_BUILD_DIR}/dev-debug.log" echo "" echo "1.2 - getopt with incorrect args" From 753fb8766351f752e838906702be06344e4cd0ec Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 18 Mar 2018 12:33:20 +0000 Subject: [PATCH 097/108] test grep --- tests/tests_jc2server.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index 597e0e210..3a1af18b1 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -530,7 +530,7 @@ echo "" core_getopt.sh) fn_test_result_pass cat "${TRAVIS_BUILD_DIR}/dev-debug.log" - +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log" echo "" echo "1.2 - getopt with incorrect args" echo "=================================" From 2c3a37020b5035a3421ff610f5700edf769480f1 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 18 Mar 2018 14:34:04 +0000 Subject: [PATCH 098/108] test --- tests/tests_ts3server.sh | 225 +++++++++++++++++++++++++++++++++------ 1 file changed, 195 insertions(+), 30 deletions(-) diff --git a/tests/tests_ts3server.sh b/tests/tests_ts3server.sh index ebfbdb696..b6ee25f95 100644 --- a/tests/tests_ts3server.sh +++ b/tests/tests_ts3server.sh @@ -9,13 +9,6 @@ travistest="1" -# Debugging -if [ -f ".dev-debug" ]; then - exec 5>dev-debug.log - BASH_XTRACEFD="5" - set -x -fi - version="171014" shortname="ts3" gameservername="ts3server" @@ -467,16 +460,24 @@ echo "Server Tests" echo "Using: ${gamename}" echo "Testing Branch: $TRAVIS_BRANCH" echo "=================================" -echo "" +echo "" echo "0.1 - Create log dir's" echo "=================================" echo "Description:" echo "Create log dir's" echo "" -(install_logs.sh) - +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + install_logs.sh +) +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' +echo"" echo "0.2 - Enable dev-debug" echo "=================================" echo "Description:" @@ -484,15 +485,27 @@ echo "Enable dev-debug" echo "" (command_dev_debug.sh) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' +echo"" echo "1.0 - start - no files" echo "=================================" echo "Description:" echo "test script reaction to missing server files." echo "Command: ./ts3server start" echo "" -(command_start.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_start.sh +) fn_test_result_fail +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "1.1 - getopt" @@ -501,8 +514,16 @@ echo "Description:" echo "displaying options messages." echo "Command: ./ts3server" echo "" -(core_getopt.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + core_getopt.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "1.2 - getopt with incorrect args" @@ -512,8 +533,16 @@ echo "displaying options messages." echo "Command: ./ts3server abc123" echo "" getopt="abc123" -(core_getopt.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + core_getopt.sh +) fn_test_result_fail +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "2.0 - install" @@ -521,8 +550,16 @@ echo "=================================" echo "Description:" echo "install ${gamename} server." echo "Command: ./ts3server auto-install" -(fn_autoinstall) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + fn_autoinstall +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "3.1 - start" @@ -532,8 +569,16 @@ echo "start ${gamename} server." echo "Command: ./ts3server start" requiredstatus="OFFLINE" fn_setstatus -(command_start.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_start.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "3.2 - start - online" @@ -543,7 +588,12 @@ echo "start ${gamename} server while already running." echo "Command: ./ts3server start" requiredstatus="ONLINE" fn_setstatus -(command_start.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_start.sh +) fn_test_result_fail echo "" @@ -554,8 +604,16 @@ echo "will update server on start." echo "Command: ./ts3server start" requiredstatus="OFFLINE" fn_setstatus -(updateonstart="on";command_start.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + updateonstart="on";command_start.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "3.4 - stop" @@ -565,8 +623,16 @@ echo "stop ${gamename} server." echo "Command: ./ts3server stop" requiredstatus="ONLINE" fn_setstatus -(command_stop.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_stop.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "3.5 - stop - offline" @@ -576,8 +642,16 @@ echo "stop ${gamename} server while already stopped." echo "Command: ./ts3server stop" requiredstatus="OFFLINE" fn_setstatus -(command_stop.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_stop.sh +) fn_test_result_fail +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "3.6 - restart" @@ -587,8 +661,16 @@ echo "restart ${gamename}." echo "Command: ./ts3server restart" requiredstatus="ONLINE" fn_setstatus -(command_restart.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_restart.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "3.7 - restart - offline" @@ -598,8 +680,16 @@ echo "restart ${gamename} while already stopped." echo "Command: ./ts3server restart" requiredstatus="OFFLINE" fn_setstatus -(command_restart.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_restart.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "4.1 - update" echo "=================================" @@ -608,8 +698,16 @@ echo "check for updates." echo "Command: ./ts3server update" requiredstatus="OFFLINE" fn_setstatus -(command_update.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_update.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "5.1 - monitor - online" @@ -619,8 +717,16 @@ echo "run monitor server while already running." echo "Command: ./ts3server monitor" requiredstatus="ONLINE" fn_setstatus -(command_monitor.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_monitor.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "5.2 - monitor - offline - with lockfile" @@ -632,8 +738,16 @@ requiredstatus="OFFLINE" fn_setstatus fn_print_info_nl "creating lockfile." date > "${rootdir}/${lockselfname}" -(command_monitor.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_monitor.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "5.3 - monitor - offline - no lockfile" @@ -643,8 +757,16 @@ echo "run monitor while server is offline with no lockfile." echo "Command: ./ts3server monitor" requiredstatus="OFFLINE" fn_setstatus -(command_monitor.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_monitor.sh +) fn_test_result_fail +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "6.0 - details" @@ -654,8 +776,16 @@ echo "display details." echo "Command: ./ts3server details" requiredstatus="ONLINE" fn_setstatus -(command_details.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_details.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "6.1 - post details" @@ -665,8 +795,16 @@ echo "post details." echo "Command: ./jc2server postdetails" requiredstatus="ONLINE" fn_setstatus -(command_postdetails.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_postdetails.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "7.0 - backup" @@ -679,6 +817,9 @@ fn_setstatus echo "test de-activated until issue #1839 fixed" #(command_backup.sh) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "8.0 - dev - detect glibc" @@ -688,8 +829,16 @@ echo "detect glibc." echo "Command: ./jc2server detect-glibc" requiredstatus="ONLINE" fn_setstatus -(command_dev_detect_glibc.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_dev_detect_glibc.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "8.1 - dev - detect ldd" @@ -699,8 +848,16 @@ echo "detect ldd." echo "Command: ./jc2server detect-ldd" requiredstatus="ONLINE" fn_setstatus -(command_dev_detect_ldd.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_dev_detect_ldd.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "8.2 - dev - detect deps" @@ -710,8 +867,16 @@ echo "detect dependencies." echo "Command: ./jc2server detect-deps" requiredstatus="ONLINE" fn_setstatus -(command_dev_detect_deps.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_dev_detect_deps.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "=================================" From 32c52892692b123ff412d12e2e8d13f49a6f7500 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 18 Mar 2018 14:51:21 +0000 Subject: [PATCH 099/108] added feature to jc2server --- tests/tests_jc2server.sh | 318 ++++++++++++++++++++++++++++++++------- 1 file changed, 266 insertions(+), 52 deletions(-) diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index 3a1af18b1..8aa76ffc9 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -475,8 +475,15 @@ echo "=================================" echo "Description:" echo "Create log dir's" echo "" -(install_logs.sh) - +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + install_logs.sh +) +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "0.2 - Enable dev-debug" echo "=================================" @@ -487,21 +494,14 @@ echo "" exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" BASH_XTRACEFD="5" set -x - command_dev_debug.sh) + command_dev_debug.sh +) fn_test_result_pass -pwd -echo "######travis build path" -echo "${TRAVIS_BUILD_DIR}" -echo "####### touch & date > /home/travis/build/GameServerManagers/LinuxGSM/tests/.dev-debug" -touch /home/travis/build/GameServerManagers/LinuxGSM/tests/.dev-debug -date > /home/travis/build/GameServerManagers/LinuxGSM/tests/.dev-debug - -echo "########## ${rootdir}/.dev-debug" -grep "functionfile=" "${TRAVIS_BUILD_DIR}/dev-debug.log" -echo "################## tree" -tree -echo "################## pwd" -pwd +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' + +echo "" echo "1.0 - start - no files" echo "=================================" echo "Description:" @@ -512,9 +512,12 @@ echo "" exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" BASH_XTRACEFD="5" set -x - command_start.sh) + command_start.sh +) fn_test_result_fail -grep "functionfile=" "${TRAVIS_BUILD_DIR}/dev-debug.log" +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "1.1 - getopt" @@ -527,10 +530,13 @@ echo "" exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" BASH_XTRACEFD="5" set -x - core_getopt.sh) + core_getopt.sh +) fn_test_result_pass -cat "${TRAVIS_BUILD_DIR}/dev-debug.log" -grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log" +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' + echo "" echo "1.2 - getopt with incorrect args" echo "=================================" @@ -539,9 +545,16 @@ echo "displaying options messages." echo "Command: ./jc2server abc123" echo "" getopt="abc123" -(core_getopt.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + core_getopt.sh +) fn_test_result_fail -grep "functionfile=" "${TRAVIS_BUILD_DIR}/dev-debug.log" +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "2.0 - install" @@ -549,9 +562,16 @@ echo "=================================" echo "Description:" echo "install ${gamename} server." echo "Command: ./jc2server auto-install" -(fn_autoinstall) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + fn_autoinstall +) fn_test_result_pass -grep "functionfile=" "${TRAVIS_BUILD_DIR}/dev-debug.log" +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "3.1 - start" @@ -561,11 +581,17 @@ echo "start ${gamename} server." echo "Command: ./jc2server start" requiredstatus="OFFLINE" fn_setstatus -(command_start.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_start.sh +) fn_test_result_pass -grep "functionfile=" "${TRAVIS_BUILD_DIR}/dev-debug.log" -echo "############## tree" -tree +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' + echo "" echo "3.2 - start - online" echo "=================================" @@ -574,8 +600,16 @@ echo "start ${gamename} server while already running." echo "Command: ./jc2server start" requiredstatus="ONLINE" fn_setstatus -(command_start.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_start.sh +) fn_test_result_fail +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "3.3 - start - updateonstart" @@ -585,8 +619,16 @@ echo "will update server on start." echo "Command: ./jc2server start" requiredstatus="OFFLINE" fn_setstatus -(updateonstart="on";command_start.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + updateonstart="on";command_start.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "3.4 - stop" @@ -596,8 +638,16 @@ echo "stop ${gamename} server." echo "Command: ./jc2server stop" requiredstatus="ONLINE" fn_setstatus -(command_stop.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_stop.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "3.5 - stop - offline" @@ -607,8 +657,16 @@ echo "stop ${gamename} server while already stopped." echo "Command: ./jc2server stop" requiredstatus="OFFLINE" fn_setstatus -(command_stop.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_stop.sh +) fn_test_result_fail +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "3.6 - restart" @@ -618,8 +676,16 @@ echo "restart ${gamename}." echo "Command: ./jc2server restart" requiredstatus="ONLINE" fn_setstatus -(command_restart.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_restart.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "3.7 - restart - offline" @@ -629,8 +695,16 @@ echo "restart ${gamename} while already stopped." echo "Command: ./jc2server restart" requiredstatus="OFFLINE" fn_setstatus -(command_restart.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_restart.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "4.1 - update" echo "=================================" @@ -639,8 +713,16 @@ echo "check for updates." echo "Command: ./jc2server update" requiredstatus="OFFLINE" fn_setstatus -(command_update.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_update.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "4.2 - update - change buildid" @@ -652,8 +734,16 @@ requiredstatus="OFFLINE" fn_setstatus fn_print_info_nl "changed buildid to 0." sed -i 's/[0-9]\+/0/' "${serverfiles}/steamapps/appmanifest_${appid}.acf" -(command_update.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_update.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "4.3 - update - change buildid - online" @@ -665,8 +755,16 @@ requiredstatus="ONLINE" fn_setstatus fn_print_info_nl "changed buildid to 0." sed -i 's/[0-9]\+/0/' "${serverfiles}/steamapps/appmanifest_${appid}.acf" -(command_update.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_update.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "4.4 - update - remove appmanifest file" @@ -678,8 +776,16 @@ requiredstatus="OFFLINE" fn_setstatus fn_print_info_nl "removed appmanifest_${appid}.acf." rm --verbose "${serverfiles}/steamapps/appmanifest_${appid}.acf" -(command_update.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_update.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "4.5 - force-update" @@ -689,8 +795,16 @@ echo "force-update bypassing update check." echo "Command: ./jc2server force-update" requiredstatus="OFFLINE" fn_setstatus -(forceupdate=1;command_update.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + forceupdate=1;command_update.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "4.6 - force-update - online" @@ -700,8 +814,16 @@ echo "force-update bypassing update check server while already running." echo "Command: ./jc2server force-update" requiredstatus="ONLINE" fn_setstatus -(forceupdate=1;command_update.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + forceupdate=1;command_update.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "4.7 - validate" @@ -711,8 +833,16 @@ echo "validate server files." echo "Command: ./jc2server validate" requiredstatus="OFFLINE" fn_setstatus -(command_validate.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_validate.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "4.8 - validate - online" @@ -723,8 +853,16 @@ echo "" echo "Command: ./jc2server validate" requiredstatus="ONLINE" fn_setstatus -(command_validate.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_validate.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "Inserting IP address" @@ -744,8 +882,16 @@ echo "run monitor server while already running." echo "Command: ./jc2server monitor" requiredstatus="ONLINE" fn_setstatus -(command_monitor.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_monitor.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "5.2 - monitor - offline - with lockfile" @@ -757,8 +903,16 @@ requiredstatus="OFFLINE" fn_setstatus fn_print_info_nl "creating lockfile." date > "${rootdir}/${lockselfname}" -(command_monitor.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_monitor.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "5.3 - monitor - offline - no lockfile" @@ -768,8 +922,16 @@ echo "run monitor while server is offline with no lockfile." echo "Command: ./jc2server monitor" requiredstatus="OFFLINE" fn_setstatus -(command_monitor.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_monitor.sh +) fn_test_result_fail +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "5.4 - monitor - gsquery.py failure" @@ -781,8 +943,17 @@ requiredstatus="ONLINE" fn_setstatus cp "${servercfgfullpath}" "config.lua" sed -i 's/[0-9]\+/0/' "${servercfgfullpath}" -(command_monitor.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_monitor.sh +) fn_test_result_fail +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' + echo "" fn_print_info_nl "Re-generating ${servercfg}." cp -v "config.lua" "${servercfgfullpath}" @@ -796,8 +967,16 @@ echo "display details." echo "Command: ./jc2server details" requiredstatus="ONLINE" fn_setstatus -(command_details.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_details.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "6.1 - post details" @@ -807,8 +986,16 @@ echo "post details." echo "Command: ./jc2server postdetails" requiredstatus="ONLINE" fn_setstatus -(command_postdetails.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_postdetails.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "7.0 - backup" @@ -821,6 +1008,9 @@ fn_setstatus echo "test de-activated until issue #1839 fixed" #(command_backup.sh) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "8.0 - dev - detect glibc" @@ -830,8 +1020,16 @@ echo "detect glibc." echo "Command: ./jc2server detect-glibc" requiredstatus="ONLINE" fn_setstatus -(command_dev_detect_glibc.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_dev_detect_glibc.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "8.1 - dev - detect ldd" @@ -841,8 +1039,16 @@ echo "detect ldd." echo "Command: ./jc2server detect-ldd" requiredstatus="ONLINE" fn_setstatus -(command_dev_detect_ldd.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_dev_detect_ldd.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "8.2 - dev - detect deps" @@ -852,8 +1058,16 @@ echo "detect dependencies." echo "Command: ./jc2server detect-deps" requiredstatus="ONLINE" fn_setstatus -(command_dev_detect_deps.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_dev_detect_deps.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "=================================" From ad6f4bb82783fb6b0fdb71e4d23a324299e921c2 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 18 Mar 2018 14:52:28 +0000 Subject: [PATCH 100/108] removed debug at top --- tests/tests_jc2server.sh | 8 -------- 1 file changed, 8 deletions(-) diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index 8aa76ffc9..738da502c 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -9,14 +9,6 @@ travistest="1" -date > "${TRAVIS_BUILD_DIR}/dev-debug.log" -# Debugging -if [ -f "${TRAVIS_BUILD_DIR}/.dev-debug" ]; then - exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" - BASH_XTRACEFD="5" - set -x -fi - version="171014" shortname="jc2" gameservername="jc2server" From 4e19031832fa56b7cdd5df32a7fe1501edc8e2bd Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 18 Mar 2018 14:54:57 +0000 Subject: [PATCH 101/108] List function files that the commands run though forgot to add file corrected filename test trying another location building tree test test test pwd test absolute path builf path date travis build dir moar tests cat dev-debug.log test grep test added feature to jc2server removed debug at top --- .travis.yml | 1 + tests/tests_jc2server.sh | 313 ++++++++++++++++++++++++++++++++++----- tests/tests_ts3server.sh | 225 ++++++++++++++++++++++++---- 3 files changed, 471 insertions(+), 68 deletions(-) diff --git a/.travis.yml b/.travis.yml index 1ae96fc9c..52eda9819 100644 --- a/.travis.yml +++ b/.travis.yml @@ -31,6 +31,7 @@ addons: - net-tools - iproute2 - shellcheck + - tree jobs: include: diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index 600afcd16..738da502c 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -9,13 +9,6 @@ travistest="1" -# Debugging -if [ -f ".dev-debug" ]; then - exec 5>dev-debug.log - BASH_XTRACEFD="5" - set -x -fi - version="171014" shortname="jc2" gameservername="jc2server" @@ -474,25 +467,49 @@ echo "=================================" echo "Description:" echo "Create log dir's" echo "" -(install_logs.sh) - +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + install_logs.sh +) +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "0.2 - Enable dev-debug" echo "=================================" echo "Description:" echo "Enable dev-debug" echo "" -(command_dev_debug.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_dev_debug.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' +echo "" echo "1.0 - start - no files" echo "=================================" echo "Description:" echo "test script reaction to missing server files." echo "Command: ./jc2server start" echo "" -(command_start.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_start.sh +) fn_test_result_fail +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "1.1 - getopt" @@ -501,8 +518,16 @@ echo "Description:" echo "displaying options messages." echo "Command: ./jc2server" echo "" -(core_getopt.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + core_getopt.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "1.2 - getopt with incorrect args" @@ -512,8 +537,16 @@ echo "displaying options messages." echo "Command: ./jc2server abc123" echo "" getopt="abc123" -(core_getopt.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + core_getopt.sh +) fn_test_result_fail +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "2.0 - install" @@ -521,8 +554,16 @@ echo "=================================" echo "Description:" echo "install ${gamename} server." echo "Command: ./jc2server auto-install" -(fn_autoinstall) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + fn_autoinstall +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "3.1 - start" @@ -532,8 +573,16 @@ echo "start ${gamename} server." echo "Command: ./jc2server start" requiredstatus="OFFLINE" fn_setstatus -(command_start.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_start.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "3.2 - start - online" @@ -543,8 +592,16 @@ echo "start ${gamename} server while already running." echo "Command: ./jc2server start" requiredstatus="ONLINE" fn_setstatus -(command_start.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_start.sh +) fn_test_result_fail +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "3.3 - start - updateonstart" @@ -554,8 +611,16 @@ echo "will update server on start." echo "Command: ./jc2server start" requiredstatus="OFFLINE" fn_setstatus -(updateonstart="on";command_start.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + updateonstart="on";command_start.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "3.4 - stop" @@ -565,8 +630,16 @@ echo "stop ${gamename} server." echo "Command: ./jc2server stop" requiredstatus="ONLINE" fn_setstatus -(command_stop.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_stop.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "3.5 - stop - offline" @@ -576,8 +649,16 @@ echo "stop ${gamename} server while already stopped." echo "Command: ./jc2server stop" requiredstatus="OFFLINE" fn_setstatus -(command_stop.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_stop.sh +) fn_test_result_fail +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "3.6 - restart" @@ -587,8 +668,16 @@ echo "restart ${gamename}." echo "Command: ./jc2server restart" requiredstatus="ONLINE" fn_setstatus -(command_restart.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_restart.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "3.7 - restart - offline" @@ -598,8 +687,16 @@ echo "restart ${gamename} while already stopped." echo "Command: ./jc2server restart" requiredstatus="OFFLINE" fn_setstatus -(command_restart.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_restart.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "4.1 - update" echo "=================================" @@ -608,8 +705,16 @@ echo "check for updates." echo "Command: ./jc2server update" requiredstatus="OFFLINE" fn_setstatus -(command_update.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_update.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "4.2 - update - change buildid" @@ -621,8 +726,16 @@ requiredstatus="OFFLINE" fn_setstatus fn_print_info_nl "changed buildid to 0." sed -i 's/[0-9]\+/0/' "${serverfiles}/steamapps/appmanifest_${appid}.acf" -(command_update.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_update.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "4.3 - update - change buildid - online" @@ -634,8 +747,16 @@ requiredstatus="ONLINE" fn_setstatus fn_print_info_nl "changed buildid to 0." sed -i 's/[0-9]\+/0/' "${serverfiles}/steamapps/appmanifest_${appid}.acf" -(command_update.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_update.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "4.4 - update - remove appmanifest file" @@ -647,8 +768,16 @@ requiredstatus="OFFLINE" fn_setstatus fn_print_info_nl "removed appmanifest_${appid}.acf." rm --verbose "${serverfiles}/steamapps/appmanifest_${appid}.acf" -(command_update.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_update.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "4.5 - force-update" @@ -658,8 +787,16 @@ echo "force-update bypassing update check." echo "Command: ./jc2server force-update" requiredstatus="OFFLINE" fn_setstatus -(forceupdate=1;command_update.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + forceupdate=1;command_update.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "4.6 - force-update - online" @@ -669,8 +806,16 @@ echo "force-update bypassing update check server while already running." echo "Command: ./jc2server force-update" requiredstatus="ONLINE" fn_setstatus -(forceupdate=1;command_update.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + forceupdate=1;command_update.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "4.7 - validate" @@ -680,8 +825,16 @@ echo "validate server files." echo "Command: ./jc2server validate" requiredstatus="OFFLINE" fn_setstatus -(command_validate.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_validate.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "4.8 - validate - online" @@ -692,8 +845,16 @@ echo "" echo "Command: ./jc2server validate" requiredstatus="ONLINE" fn_setstatus -(command_validate.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_validate.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "Inserting IP address" @@ -713,8 +874,16 @@ echo "run monitor server while already running." echo "Command: ./jc2server monitor" requiredstatus="ONLINE" fn_setstatus -(command_monitor.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_monitor.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "5.2 - monitor - offline - with lockfile" @@ -726,8 +895,16 @@ requiredstatus="OFFLINE" fn_setstatus fn_print_info_nl "creating lockfile." date > "${rootdir}/${lockselfname}" -(command_monitor.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_monitor.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "5.3 - monitor - offline - no lockfile" @@ -737,8 +914,16 @@ echo "run monitor while server is offline with no lockfile." echo "Command: ./jc2server monitor" requiredstatus="OFFLINE" fn_setstatus -(command_monitor.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_monitor.sh +) fn_test_result_fail +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "5.4 - monitor - gsquery.py failure" @@ -750,8 +935,17 @@ requiredstatus="ONLINE" fn_setstatus cp "${servercfgfullpath}" "config.lua" sed -i 's/[0-9]\+/0/' "${servercfgfullpath}" -(command_monitor.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_monitor.sh +) fn_test_result_fail +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' + echo "" fn_print_info_nl "Re-generating ${servercfg}." cp -v "config.lua" "${servercfgfullpath}" @@ -765,8 +959,16 @@ echo "display details." echo "Command: ./jc2server details" requiredstatus="ONLINE" fn_setstatus -(command_details.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_details.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "6.1 - post details" @@ -776,8 +978,16 @@ echo "post details." echo "Command: ./jc2server postdetails" requiredstatus="ONLINE" fn_setstatus -(command_postdetails.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_postdetails.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "7.0 - backup" @@ -790,6 +1000,9 @@ fn_setstatus echo "test de-activated until issue #1839 fixed" #(command_backup.sh) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "8.0 - dev - detect glibc" @@ -799,8 +1012,16 @@ echo "detect glibc." echo "Command: ./jc2server detect-glibc" requiredstatus="ONLINE" fn_setstatus -(command_dev_detect_glibc.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_dev_detect_glibc.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "8.1 - dev - detect ldd" @@ -810,8 +1031,16 @@ echo "detect ldd." echo "Command: ./jc2server detect-ldd" requiredstatus="ONLINE" fn_setstatus -(command_dev_detect_ldd.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_dev_detect_ldd.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "8.2 - dev - detect deps" @@ -821,8 +1050,16 @@ echo "detect dependencies." echo "Command: ./jc2server detect-deps" requiredstatus="ONLINE" fn_setstatus -(command_dev_detect_deps.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_dev_detect_deps.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "=================================" diff --git a/tests/tests_ts3server.sh b/tests/tests_ts3server.sh index ebfbdb696..b6ee25f95 100644 --- a/tests/tests_ts3server.sh +++ b/tests/tests_ts3server.sh @@ -9,13 +9,6 @@ travistest="1" -# Debugging -if [ -f ".dev-debug" ]; then - exec 5>dev-debug.log - BASH_XTRACEFD="5" - set -x -fi - version="171014" shortname="ts3" gameservername="ts3server" @@ -467,16 +460,24 @@ echo "Server Tests" echo "Using: ${gamename}" echo "Testing Branch: $TRAVIS_BRANCH" echo "=================================" -echo "" +echo "" echo "0.1 - Create log dir's" echo "=================================" echo "Description:" echo "Create log dir's" echo "" -(install_logs.sh) - +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + install_logs.sh +) +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' +echo"" echo "0.2 - Enable dev-debug" echo "=================================" echo "Description:" @@ -484,15 +485,27 @@ echo "Enable dev-debug" echo "" (command_dev_debug.sh) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' +echo"" echo "1.0 - start - no files" echo "=================================" echo "Description:" echo "test script reaction to missing server files." echo "Command: ./ts3server start" echo "" -(command_start.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_start.sh +) fn_test_result_fail +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "1.1 - getopt" @@ -501,8 +514,16 @@ echo "Description:" echo "displaying options messages." echo "Command: ./ts3server" echo "" -(core_getopt.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + core_getopt.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "1.2 - getopt with incorrect args" @@ -512,8 +533,16 @@ echo "displaying options messages." echo "Command: ./ts3server abc123" echo "" getopt="abc123" -(core_getopt.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + core_getopt.sh +) fn_test_result_fail +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "2.0 - install" @@ -521,8 +550,16 @@ echo "=================================" echo "Description:" echo "install ${gamename} server." echo "Command: ./ts3server auto-install" -(fn_autoinstall) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + fn_autoinstall +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "3.1 - start" @@ -532,8 +569,16 @@ echo "start ${gamename} server." echo "Command: ./ts3server start" requiredstatus="OFFLINE" fn_setstatus -(command_start.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_start.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "3.2 - start - online" @@ -543,7 +588,12 @@ echo "start ${gamename} server while already running." echo "Command: ./ts3server start" requiredstatus="ONLINE" fn_setstatus -(command_start.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_start.sh +) fn_test_result_fail echo "" @@ -554,8 +604,16 @@ echo "will update server on start." echo "Command: ./ts3server start" requiredstatus="OFFLINE" fn_setstatus -(updateonstart="on";command_start.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + updateonstart="on";command_start.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "3.4 - stop" @@ -565,8 +623,16 @@ echo "stop ${gamename} server." echo "Command: ./ts3server stop" requiredstatus="ONLINE" fn_setstatus -(command_stop.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_stop.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "3.5 - stop - offline" @@ -576,8 +642,16 @@ echo "stop ${gamename} server while already stopped." echo "Command: ./ts3server stop" requiredstatus="OFFLINE" fn_setstatus -(command_stop.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_stop.sh +) fn_test_result_fail +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "3.6 - restart" @@ -587,8 +661,16 @@ echo "restart ${gamename}." echo "Command: ./ts3server restart" requiredstatus="ONLINE" fn_setstatus -(command_restart.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_restart.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "3.7 - restart - offline" @@ -598,8 +680,16 @@ echo "restart ${gamename} while already stopped." echo "Command: ./ts3server restart" requiredstatus="OFFLINE" fn_setstatus -(command_restart.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_restart.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "4.1 - update" echo "=================================" @@ -608,8 +698,16 @@ echo "check for updates." echo "Command: ./ts3server update" requiredstatus="OFFLINE" fn_setstatus -(command_update.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_update.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "5.1 - monitor - online" @@ -619,8 +717,16 @@ echo "run monitor server while already running." echo "Command: ./ts3server monitor" requiredstatus="ONLINE" fn_setstatus -(command_monitor.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_monitor.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "5.2 - monitor - offline - with lockfile" @@ -632,8 +738,16 @@ requiredstatus="OFFLINE" fn_setstatus fn_print_info_nl "creating lockfile." date > "${rootdir}/${lockselfname}" -(command_monitor.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_monitor.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "5.3 - monitor - offline - no lockfile" @@ -643,8 +757,16 @@ echo "run monitor while server is offline with no lockfile." echo "Command: ./ts3server monitor" requiredstatus="OFFLINE" fn_setstatus -(command_monitor.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_monitor.sh +) fn_test_result_fail +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "6.0 - details" @@ -654,8 +776,16 @@ echo "display details." echo "Command: ./ts3server details" requiredstatus="ONLINE" fn_setstatus -(command_details.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_details.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "6.1 - post details" @@ -665,8 +795,16 @@ echo "post details." echo "Command: ./jc2server postdetails" requiredstatus="ONLINE" fn_setstatus -(command_postdetails.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_postdetails.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "7.0 - backup" @@ -679,6 +817,9 @@ fn_setstatus echo "test de-activated until issue #1839 fixed" #(command_backup.sh) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "8.0 - dev - detect glibc" @@ -688,8 +829,16 @@ echo "detect glibc." echo "Command: ./jc2server detect-glibc" requiredstatus="ONLINE" fn_setstatus -(command_dev_detect_glibc.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_dev_detect_glibc.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "8.1 - dev - detect ldd" @@ -699,8 +848,16 @@ echo "detect ldd." echo "Command: ./jc2server detect-ldd" requiredstatus="ONLINE" fn_setstatus -(command_dev_detect_ldd.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_dev_detect_ldd.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "8.2 - dev - detect deps" @@ -710,8 +867,16 @@ echo "detect dependencies." echo "Command: ./jc2server detect-deps" requiredstatus="ONLINE" fn_setstatus -(command_dev_detect_deps.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_dev_detect_deps.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "=================================" From 09c97b42ae89363b8ac58746a78126d5eebb351d Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 18 Mar 2018 14:57:11 +0000 Subject: [PATCH 102/108] removed tree --- .travis.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 52eda9819..1ae96fc9c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -31,7 +31,6 @@ addons: - net-tools - iproute2 - shellcheck - - tree jobs: include: From 12145c62c7ed017830401e8b212cd98850732e14 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 18 Mar 2018 14:59:59 +0000 Subject: [PATCH 103/108] removed tree --- .travis.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 52eda9819..1ae96fc9c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -31,7 +31,6 @@ addons: - net-tools - iproute2 - shellcheck - - tree jobs: include: From 51a216c09d80e676d57dd0c541df2b6336e8d831 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 18 Mar 2018 15:00:09 +0000 Subject: [PATCH 104/108] List function files that the commands run though during test --- tests/tests_jc2server.sh | 313 ++++++++++++++++++++++++++++++++++----- tests/tests_ts3server.sh | 225 ++++++++++++++++++++++++---- 2 files changed, 470 insertions(+), 68 deletions(-) diff --git a/tests/tests_jc2server.sh b/tests/tests_jc2server.sh index 600afcd16..738da502c 100644 --- a/tests/tests_jc2server.sh +++ b/tests/tests_jc2server.sh @@ -9,13 +9,6 @@ travistest="1" -# Debugging -if [ -f ".dev-debug" ]; then - exec 5>dev-debug.log - BASH_XTRACEFD="5" - set -x -fi - version="171014" shortname="jc2" gameservername="jc2server" @@ -474,25 +467,49 @@ echo "=================================" echo "Description:" echo "Create log dir's" echo "" -(install_logs.sh) - +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + install_logs.sh +) +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "0.2 - Enable dev-debug" echo "=================================" echo "Description:" echo "Enable dev-debug" echo "" -(command_dev_debug.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_dev_debug.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' +echo "" echo "1.0 - start - no files" echo "=================================" echo "Description:" echo "test script reaction to missing server files." echo "Command: ./jc2server start" echo "" -(command_start.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_start.sh +) fn_test_result_fail +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "1.1 - getopt" @@ -501,8 +518,16 @@ echo "Description:" echo "displaying options messages." echo "Command: ./jc2server" echo "" -(core_getopt.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + core_getopt.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "1.2 - getopt with incorrect args" @@ -512,8 +537,16 @@ echo "displaying options messages." echo "Command: ./jc2server abc123" echo "" getopt="abc123" -(core_getopt.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + core_getopt.sh +) fn_test_result_fail +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "2.0 - install" @@ -521,8 +554,16 @@ echo "=================================" echo "Description:" echo "install ${gamename} server." echo "Command: ./jc2server auto-install" -(fn_autoinstall) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + fn_autoinstall +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "3.1 - start" @@ -532,8 +573,16 @@ echo "start ${gamename} server." echo "Command: ./jc2server start" requiredstatus="OFFLINE" fn_setstatus -(command_start.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_start.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "3.2 - start - online" @@ -543,8 +592,16 @@ echo "start ${gamename} server while already running." echo "Command: ./jc2server start" requiredstatus="ONLINE" fn_setstatus -(command_start.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_start.sh +) fn_test_result_fail +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "3.3 - start - updateonstart" @@ -554,8 +611,16 @@ echo "will update server on start." echo "Command: ./jc2server start" requiredstatus="OFFLINE" fn_setstatus -(updateonstart="on";command_start.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + updateonstart="on";command_start.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "3.4 - stop" @@ -565,8 +630,16 @@ echo "stop ${gamename} server." echo "Command: ./jc2server stop" requiredstatus="ONLINE" fn_setstatus -(command_stop.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_stop.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "3.5 - stop - offline" @@ -576,8 +649,16 @@ echo "stop ${gamename} server while already stopped." echo "Command: ./jc2server stop" requiredstatus="OFFLINE" fn_setstatus -(command_stop.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_stop.sh +) fn_test_result_fail +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "3.6 - restart" @@ -587,8 +668,16 @@ echo "restart ${gamename}." echo "Command: ./jc2server restart" requiredstatus="ONLINE" fn_setstatus -(command_restart.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_restart.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "3.7 - restart - offline" @@ -598,8 +687,16 @@ echo "restart ${gamename} while already stopped." echo "Command: ./jc2server restart" requiredstatus="OFFLINE" fn_setstatus -(command_restart.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_restart.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "4.1 - update" echo "=================================" @@ -608,8 +705,16 @@ echo "check for updates." echo "Command: ./jc2server update" requiredstatus="OFFLINE" fn_setstatus -(command_update.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_update.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "4.2 - update - change buildid" @@ -621,8 +726,16 @@ requiredstatus="OFFLINE" fn_setstatus fn_print_info_nl "changed buildid to 0." sed -i 's/[0-9]\+/0/' "${serverfiles}/steamapps/appmanifest_${appid}.acf" -(command_update.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_update.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "4.3 - update - change buildid - online" @@ -634,8 +747,16 @@ requiredstatus="ONLINE" fn_setstatus fn_print_info_nl "changed buildid to 0." sed -i 's/[0-9]\+/0/' "${serverfiles}/steamapps/appmanifest_${appid}.acf" -(command_update.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_update.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "4.4 - update - remove appmanifest file" @@ -647,8 +768,16 @@ requiredstatus="OFFLINE" fn_setstatus fn_print_info_nl "removed appmanifest_${appid}.acf." rm --verbose "${serverfiles}/steamapps/appmanifest_${appid}.acf" -(command_update.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_update.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "4.5 - force-update" @@ -658,8 +787,16 @@ echo "force-update bypassing update check." echo "Command: ./jc2server force-update" requiredstatus="OFFLINE" fn_setstatus -(forceupdate=1;command_update.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + forceupdate=1;command_update.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "4.6 - force-update - online" @@ -669,8 +806,16 @@ echo "force-update bypassing update check server while already running." echo "Command: ./jc2server force-update" requiredstatus="ONLINE" fn_setstatus -(forceupdate=1;command_update.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + forceupdate=1;command_update.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "4.7 - validate" @@ -680,8 +825,16 @@ echo "validate server files." echo "Command: ./jc2server validate" requiredstatus="OFFLINE" fn_setstatus -(command_validate.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_validate.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "4.8 - validate - online" @@ -692,8 +845,16 @@ echo "" echo "Command: ./jc2server validate" requiredstatus="ONLINE" fn_setstatus -(command_validate.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_validate.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "Inserting IP address" @@ -713,8 +874,16 @@ echo "run monitor server while already running." echo "Command: ./jc2server monitor" requiredstatus="ONLINE" fn_setstatus -(command_monitor.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_monitor.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "5.2 - monitor - offline - with lockfile" @@ -726,8 +895,16 @@ requiredstatus="OFFLINE" fn_setstatus fn_print_info_nl "creating lockfile." date > "${rootdir}/${lockselfname}" -(command_monitor.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_monitor.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "5.3 - monitor - offline - no lockfile" @@ -737,8 +914,16 @@ echo "run monitor while server is offline with no lockfile." echo "Command: ./jc2server monitor" requiredstatus="OFFLINE" fn_setstatus -(command_monitor.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_monitor.sh +) fn_test_result_fail +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "5.4 - monitor - gsquery.py failure" @@ -750,8 +935,17 @@ requiredstatus="ONLINE" fn_setstatus cp "${servercfgfullpath}" "config.lua" sed -i 's/[0-9]\+/0/' "${servercfgfullpath}" -(command_monitor.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_monitor.sh +) fn_test_result_fail +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' + echo "" fn_print_info_nl "Re-generating ${servercfg}." cp -v "config.lua" "${servercfgfullpath}" @@ -765,8 +959,16 @@ echo "display details." echo "Command: ./jc2server details" requiredstatus="ONLINE" fn_setstatus -(command_details.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_details.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "6.1 - post details" @@ -776,8 +978,16 @@ echo "post details." echo "Command: ./jc2server postdetails" requiredstatus="ONLINE" fn_setstatus -(command_postdetails.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_postdetails.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "7.0 - backup" @@ -790,6 +1000,9 @@ fn_setstatus echo "test de-activated until issue #1839 fixed" #(command_backup.sh) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "8.0 - dev - detect glibc" @@ -799,8 +1012,16 @@ echo "detect glibc." echo "Command: ./jc2server detect-glibc" requiredstatus="ONLINE" fn_setstatus -(command_dev_detect_glibc.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_dev_detect_glibc.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "8.1 - dev - detect ldd" @@ -810,8 +1031,16 @@ echo "detect ldd." echo "Command: ./jc2server detect-ldd" requiredstatus="ONLINE" fn_setstatus -(command_dev_detect_ldd.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_dev_detect_ldd.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "8.2 - dev - detect deps" @@ -821,8 +1050,16 @@ echo "detect dependencies." echo "Command: ./jc2server detect-deps" requiredstatus="ONLINE" fn_setstatus -(command_dev_detect_deps.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_dev_detect_deps.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "=================================" diff --git a/tests/tests_ts3server.sh b/tests/tests_ts3server.sh index ebfbdb696..b6ee25f95 100644 --- a/tests/tests_ts3server.sh +++ b/tests/tests_ts3server.sh @@ -9,13 +9,6 @@ travistest="1" -# Debugging -if [ -f ".dev-debug" ]; then - exec 5>dev-debug.log - BASH_XTRACEFD="5" - set -x -fi - version="171014" shortname="ts3" gameservername="ts3server" @@ -467,16 +460,24 @@ echo "Server Tests" echo "Using: ${gamename}" echo "Testing Branch: $TRAVIS_BRANCH" echo "=================================" -echo "" +echo "" echo "0.1 - Create log dir's" echo "=================================" echo "Description:" echo "Create log dir's" echo "" -(install_logs.sh) - +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + install_logs.sh +) +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' +echo"" echo "0.2 - Enable dev-debug" echo "=================================" echo "Description:" @@ -484,15 +485,27 @@ echo "Enable dev-debug" echo "" (command_dev_debug.sh) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' +echo"" echo "1.0 - start - no files" echo "=================================" echo "Description:" echo "test script reaction to missing server files." echo "Command: ./ts3server start" echo "" -(command_start.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_start.sh +) fn_test_result_fail +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "1.1 - getopt" @@ -501,8 +514,16 @@ echo "Description:" echo "displaying options messages." echo "Command: ./ts3server" echo "" -(core_getopt.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + core_getopt.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "1.2 - getopt with incorrect args" @@ -512,8 +533,16 @@ echo "displaying options messages." echo "Command: ./ts3server abc123" echo "" getopt="abc123" -(core_getopt.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + core_getopt.sh +) fn_test_result_fail +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "2.0 - install" @@ -521,8 +550,16 @@ echo "=================================" echo "Description:" echo "install ${gamename} server." echo "Command: ./ts3server auto-install" -(fn_autoinstall) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + fn_autoinstall +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "3.1 - start" @@ -532,8 +569,16 @@ echo "start ${gamename} server." echo "Command: ./ts3server start" requiredstatus="OFFLINE" fn_setstatus -(command_start.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_start.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "3.2 - start - online" @@ -543,7 +588,12 @@ echo "start ${gamename} server while already running." echo "Command: ./ts3server start" requiredstatus="ONLINE" fn_setstatus -(command_start.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_start.sh +) fn_test_result_fail echo "" @@ -554,8 +604,16 @@ echo "will update server on start." echo "Command: ./ts3server start" requiredstatus="OFFLINE" fn_setstatus -(updateonstart="on";command_start.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + updateonstart="on";command_start.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "3.4 - stop" @@ -565,8 +623,16 @@ echo "stop ${gamename} server." echo "Command: ./ts3server stop" requiredstatus="ONLINE" fn_setstatus -(command_stop.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_stop.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "3.5 - stop - offline" @@ -576,8 +642,16 @@ echo "stop ${gamename} server while already stopped." echo "Command: ./ts3server stop" requiredstatus="OFFLINE" fn_setstatus -(command_stop.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_stop.sh +) fn_test_result_fail +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "3.6 - restart" @@ -587,8 +661,16 @@ echo "restart ${gamename}." echo "Command: ./ts3server restart" requiredstatus="ONLINE" fn_setstatus -(command_restart.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_restart.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "3.7 - restart - offline" @@ -598,8 +680,16 @@ echo "restart ${gamename} while already stopped." echo "Command: ./ts3server restart" requiredstatus="OFFLINE" fn_setstatus -(command_restart.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_restart.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "4.1 - update" echo "=================================" @@ -608,8 +698,16 @@ echo "check for updates." echo "Command: ./ts3server update" requiredstatus="OFFLINE" fn_setstatus -(command_update.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_update.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "5.1 - monitor - online" @@ -619,8 +717,16 @@ echo "run monitor server while already running." echo "Command: ./ts3server monitor" requiredstatus="ONLINE" fn_setstatus -(command_monitor.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_monitor.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "5.2 - monitor - offline - with lockfile" @@ -632,8 +738,16 @@ requiredstatus="OFFLINE" fn_setstatus fn_print_info_nl "creating lockfile." date > "${rootdir}/${lockselfname}" -(command_monitor.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_monitor.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "5.3 - monitor - offline - no lockfile" @@ -643,8 +757,16 @@ echo "run monitor while server is offline with no lockfile." echo "Command: ./ts3server monitor" requiredstatus="OFFLINE" fn_setstatus -(command_monitor.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_monitor.sh +) fn_test_result_fail +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "6.0 - details" @@ -654,8 +776,16 @@ echo "display details." echo "Command: ./ts3server details" requiredstatus="ONLINE" fn_setstatus -(command_details.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_details.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "6.1 - post details" @@ -665,8 +795,16 @@ echo "post details." echo "Command: ./jc2server postdetails" requiredstatus="ONLINE" fn_setstatus -(command_postdetails.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_postdetails.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "7.0 - backup" @@ -679,6 +817,9 @@ fn_setstatus echo "test de-activated until issue #1839 fixed" #(command_backup.sh) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "8.0 - dev - detect glibc" @@ -688,8 +829,16 @@ echo "detect glibc." echo "Command: ./jc2server detect-glibc" requiredstatus="ONLINE" fn_setstatus -(command_dev_detect_glibc.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_dev_detect_glibc.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "8.1 - dev - detect ldd" @@ -699,8 +848,16 @@ echo "detect ldd." echo "Command: ./jc2server detect-ldd" requiredstatus="ONLINE" fn_setstatus -(command_dev_detect_ldd.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_dev_detect_ldd.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "8.2 - dev - detect deps" @@ -710,8 +867,16 @@ echo "detect dependencies." echo "Command: ./jc2server detect-deps" requiredstatus="ONLINE" fn_setstatus -(command_dev_detect_deps.sh) +( + exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" + BASH_XTRACEFD="5" + set -x + command_dev_detect_deps.sh +) fn_test_result_pass +echo "run order" +echo "=================" +grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g' echo "" echo "=================================" From 4fe0e69086710e28be8bdc9d3abefbbb8a48f7c0 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 18 Mar 2018 15:38:44 +0000 Subject: [PATCH 105/108] Message stating IP automatically set --- lgsm/functions/check_ip.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lgsm/functions/check_ip.sh b/lgsm/functions/check_ip.sh index cf2690534..f3e637a25 100644 --- a/lgsm/functions/check_ip.sh +++ b/lgsm/functions/check_ip.sh @@ -72,6 +72,8 @@ if [ "${gamename}" != "TeamSpeak 3" ]&&[ "${gamename}" != "Mumble" ]&&[ "${travi fn_script_log_fatal "https://linuxgsm.com/network-interfaces\n" core_exit.sh else + fn_print_info_nl "Check IP: ${getip}" + sleep 1 ip="${getip}" fi fi From 3f3e2999014937ed9102fcf1f1b6abc2ec2de6df Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 18 Mar 2018 15:40:45 +0000 Subject: [PATCH 106/108] added script log message about auto ip --- lgsm/functions/check_ip.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/lgsm/functions/check_ip.sh b/lgsm/functions/check_ip.sh index f3e637a25..57971725a 100644 --- a/lgsm/functions/check_ip.sh +++ b/lgsm/functions/check_ip.sh @@ -73,6 +73,7 @@ if [ "${gamename}" != "TeamSpeak 3" ]&&[ "${gamename}" != "Mumble" ]&&[ "${travi core_exit.sh else fn_print_info_nl "Check IP: ${getip}" + fn_script_log_info "IP automatically set as: ${getip}" sleep 1 ip="${getip}" fi From 6ad869783d296c139e6c81ea15e88414cb53d156 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 18 Mar 2018 15:40:55 +0000 Subject: [PATCH 107/108] Message stating IP automatically set --- lgsm/functions/check_ip.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lgsm/functions/check_ip.sh b/lgsm/functions/check_ip.sh index cf2690534..57971725a 100644 --- a/lgsm/functions/check_ip.sh +++ b/lgsm/functions/check_ip.sh @@ -72,6 +72,9 @@ if [ "${gamename}" != "TeamSpeak 3" ]&&[ "${gamename}" != "Mumble" ]&&[ "${travi fn_script_log_fatal "https://linuxgsm.com/network-interfaces\n" core_exit.sh else + fn_print_info_nl "Check IP: ${getip}" + fn_script_log_info "IP automatically set as: ${getip}" + sleep 1 ip="${getip}" fi fi From 310f8a0a923db8e8f39984b099cd3de9a1b421dc Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 18 Mar 2018 15:52:53 +0000 Subject: [PATCH 108/108] updated version number --- linuxgsm.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linuxgsm.sh b/linuxgsm.sh index 17b8cf74e..39329e911 100755 --- a/linuxgsm.sh +++ b/linuxgsm.sh @@ -20,7 +20,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="180313" +version="180318" shortname="core" gameservername="core" rootdir="$(dirname "$(readlink -f "${BASH_SOURCE[0]}")")"