From 01919f28308ef8a9f1c6d3ae4ef3c8e9d32e492b Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Apr 2018 02:36:21 +0200 Subject: [PATCH 1/7] Major cleaning of tmux handling - Improved tmux session listing - Removed redundant checks - Reorganized tests orders - Added a missing space --- lgsm/functions/check_status.sh | 2 +- lgsm/functions/command_start.sh | 47 +++++++++++---------------------- lgsm/functions/command_stop.sh | 25 +++++++----------- 3 files changed, 26 insertions(+), 48 deletions(-) diff --git a/lgsm/functions/check_status.sh b/lgsm/functions/check_status.sh index e297f24c2..fa180a375 100644 --- a/lgsm/functions/check_status.sh +++ b/lgsm/functions/check_status.sh @@ -32,5 +32,5 @@ elif [ "${gamename}" == "Mumble" ]; then status=1 fi else - status=$(tmux list-sessions 2>&1 | awk '{print $1}' | grep -Ec "^${servicename}:") + status=$(tmux list-sessions -F "#{session_name}" | grep -Ecx "^${servicename}") fi diff --git a/lgsm/functions/command_start.sh b/lgsm/functions/command_start.sh index 2dc10ecf3..7bea77da8 100644 --- a/lgsm/functions/command_start.sh +++ b/lgsm/functions/command_start.sh @@ -25,14 +25,6 @@ fn_start_teamspeak3(){ touch "${servercfgfullpath}" fi sleep 0.5 - check_status.sh - if [ "${status}" != "0" ]; then - fn_print_info_nl "${servername} is already running" - fn_script_log_error "${servername} is already running" - if [ -z "${exitbypass}" ]; then - core_exit.sh - fi - fi if [ -f "${lgsmlog}" ]; then mv "${lgsmlog}" "${lgsmlogdate}" fi @@ -81,28 +73,15 @@ fn_start_tmux(){ fi # Log rotation - check_status.sh - if [ "${status}" == "0" ]; then - fn_script_log_info "Rotating log files" - if [ "${engine}" == "unreal2" ]; then - if [ -f "${gamelog}" ]; then - mv "${gamelog}" "${gamelogdate}" - fi + fn_script_log_info "Rotating log files" + if [ "${engine}" == "unreal2" ]; then + if [ -f "${gamelog}" ]; then + mv "${gamelog}" "${gamelogdate}" fi mv "${lgsmlog}" "${lgsmlogdate}" mv "${consolelog}" "${consolelogdate}" fi - # If server is already running exit - check_status.sh - if [ "${status}" != "0" ]; then - fn_print_info_nl "${servername} is already running" - fn_script_log_error "${servername} is already running" - if [ -z "${exitbypass}" ]; then - core_exit.sh - fi - fi - # Create lockfile date > "${rootdir}/${lockselfname}" cd "${executabledir}" @@ -209,17 +188,23 @@ sleep 0.5 fn_print_dots "${servername}" sleep 0.5 check.sh +# Is the server already started +if [ "${status}" != "0" ]; then # $status comes from check_status.sh, which is run by check.sh for this command + fn_print_info_nl "${servername} is already running" + fn_script_log_error "${servername} is already running" + if [ -z "${exitbypass}" ]; then + core_exit.sh + fi +fi fix.sh info_config.sh logs.sh # Will check for updates is updateonstart is yes -if [ "${status}" == "0" ]; then - if [ "${updateonstart}" == "yes" ]||[ "${updateonstart}" == "1" ]||[ "${updateonstart}" == "on" ]; then - exitbypass=1 - unset updateonstart - command_update.sh - fi +if [ "${updateonstart}" == "yes" ]||[ "${updateonstart}" == "1" ]||[ "${updateonstart}" == "on" ]; then + exitbypass=1 + unset updateonstart + command_update.sh fi if [ "${gamename}" == "TeamSpeak 3" ]; then diff --git a/lgsm/functions/command_stop.sh b/lgsm/functions/command_stop.sh index 24223974e..54fb73bba 100644 --- a/lgsm/functions/command_stop.sh +++ b/lgsm/functions/command_stop.sh @@ -277,28 +277,21 @@ fn_stop_tmux(){ fn_print_ok_nl "${servername}" fn_script_log_pass "Stopped ${servername}" else - fn_print_fail_nl "Unable to stop${servername}" - fn_script_log_fatal "Unable to stop${servername}" + fn_print_fail_nl "Unable to stop ${servername}" + fn_script_log_fatal "Unable to stop ${servername}" fi } # checks if the server is already stopped before trying to stop. fn_stop_pre_check(){ - if [ "${gamename}" == "TeamSpeak 3" ]; then - check_status.sh - if [ "${status}" == "0" ]; then - fn_print_info_nl "${servername} is already stopped" - fn_script_log_error "${servername} is already stopped" - else - fn_stop_teamspeak3 - fi +# Is the server already stopped + if [ "${status}" == "0" ]; then # $status comes from check_status.sh, which is run by check.sh for this command + fn_print_info_nl "${servername} is already stopped" + fn_script_log_error "${servername} is already stopped" + elif [ "${gamename}" == "TeamSpeak 3" ]; then + fn_stop_teamspeak3 else - if [ "${status}" == "0" ]; then - fn_print_info_nl "${servername} is already stopped" - fn_script_log_error "${servername} is already stopped" - else - fn_stop_graceful_select - fi + fn_stop_graceful_select fi } From 476320095ece85b12bb2db5e1cf48ec386374e77 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Apr 2018 03:19:20 +0200 Subject: [PATCH 2/7] Remaining -t= to clean --- lgsm/functions/command_start.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/command_start.sh b/lgsm/functions/command_start.sh index 7bea77da8..67c7c40a7 100644 --- a/lgsm/functions/command_start.sh +++ b/lgsm/functions/command_start.sh @@ -97,7 +97,7 @@ fn_start_tmux(){ fn_script_log "Tmux version: master (user compiled)" echo "Tmux version: master (user compiled)" >> "${consolelog}" if [ "${consolelogging}" == "on" ]||[ -z "${consolelogging}" ]; then - tmux pipe-pane -o -t="${servicename}" "exec cat >> '${consolelog}'" + tmux pipe-pane -o -t "${servicename}" "exec cat >> '${consolelog}'" fi elif [ -n "${tmuxversion}" ]; then # Get the digit version of tmux @@ -115,7 +115,7 @@ fn_start_tmux(){ Currently installed: $(tmux -V)" > "${consolelog}" # Console logging enable or not set elif [ "${consolelogging}" == "on" ]||[ -z "${consolelogging}" ]; then - tmux pipe-pane -o -t="${servicename}" "exec cat >> '${consolelog}'" + tmux pipe-pane -o -t "${servicename}" "exec cat >> '${consolelog}'" fi else echo "Unable to detect tmux version" >> "${consolelog}" From 97c87a9d56fbe6919c6c77c3ac328d630d1f947f Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Apr 2018 04:03:06 +0200 Subject: [PATCH 3/7] Fixed tmux sessions killed when they should not When graceful works, probably because of pipe-pane or for whatever reason, the tmux session dies. But fn_stop_tmux was ran anyways, which then caused a command like tmux kill-session -t csgoserver to affect the closest matching alternate, like csgoserver-2 tmux session. With this change, we make sure to run the session kill only when required. --- lgsm/functions/command_stop.sh | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/lgsm/functions/command_stop.sh b/lgsm/functions/command_stop.sh index 54fb73bba..b35700aab 100644 --- a/lgsm/functions/command_stop.sh +++ b/lgsm/functions/command_stop.sh @@ -34,7 +34,6 @@ fn_stop_graceful_ctrlc(){ fn_script_log_error "Graceful: CTRL+c: FAIL" fi sleep 0.5 - fn_stop_tmux } # Attempts graceful shutdown by sending a specified command. @@ -64,7 +63,6 @@ fn_stop_graceful_cmd(){ fn_script_log_error "Graceful: sending \"${1}\": FAIL" fi sleep 0.5 - fn_stop_tmux } # Attempts graceful of goldsource using rcon 'quit' command. @@ -85,7 +83,6 @@ fn_stop_graceful_goldsource(){ fn_print_ok_eol_nl fn_script_log_pass "Graceful: sending \"quit\": OK: ${seconds} seconds" sleep 0.5 - fn_stop_tmux } # Attempts graceful of 7 Days To Die using telnet. @@ -174,7 +171,6 @@ fn_stop_graceful_sdtd(){ fn_script_log_warn "Graceful: telnet: expect not installed: FAIL" fi sleep 0.5 - fn_stop_tmux } fn_stop_graceful_select(){ @@ -195,8 +191,6 @@ fn_stop_graceful_select(){ fn_stop_graceful_ctrlc elif [ "${engine}" == "source" ]||[ "${engine}" == "quake" ]||[ "${engine}" == "idtech2" ]||[ "${engine}" == "idtech3" ]||[ "${engine}" == "idtech3_ql" ]||[ "${engine}" == "Just Cause 2" ]||[ "${engine}" == "projectzomboid" ]||[ "${shortname}" == "rw" ]; then fn_stop_graceful_cmd "quit" 30 - else - fn_stop_tmux fi } @@ -293,6 +287,11 @@ fn_stop_pre_check(){ else fn_stop_graceful_select fi + # Check status again, a stop tmux session if needed + check_status.sh + if [ "${status}" != "0" ]; then + fn_stop_tmux + fi } fn_print_dots "${servername}" From aed05e2dc1c0b8e66bdbfcb29d2def44ef6312ae Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Apr 2018 04:13:08 +0200 Subject: [PATCH 4/7] You can remain quiet now tmux, we know you're here --- lgsm/functions/check_status.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/check_status.sh b/lgsm/functions/check_status.sh index fa180a375..4fb1bfa31 100644 --- a/lgsm/functions/check_status.sh +++ b/lgsm/functions/check_status.sh @@ -32,5 +32,5 @@ elif [ "${gamename}" == "Mumble" ]; then status=1 fi else - status=$(tmux list-sessions -F "#{session_name}" | grep -Ecx "^${servicename}") + status=$(tmux list-sessions -F "#{session_name}" 2>/dev/null | grep -Ecx "^${servicename}") fi From aa31cdb74b69c8e8c1fbcca3331aa5b4fba2c432 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Apr 2018 04:27:18 +0200 Subject: [PATCH 5/7] Better place to remove the lockfile --- lgsm/functions/command_stop.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/command_stop.sh b/lgsm/functions/command_stop.sh index b35700aab..7b8ce1597 100644 --- a/lgsm/functions/command_stop.sh +++ b/lgsm/functions/command_stop.sh @@ -261,8 +261,6 @@ fn_stop_tmux(){ sleep 0.5 check_status.sh if [ "${status}" == "0" ]; then - # Remove lockfile - rm -f "${rootdir}/${lockselfname}" # ARK doesn't clean up immediately after tmux is killed. # Make certain the ports are cleared before continuing. if [ "${gamename}" == "ARK: Survival Evolved" ]; then @@ -299,4 +297,8 @@ sleep 0.5 check.sh info_config.sh fn_stop_pre_check +# Remove lockfile +if [ -f "${rootdir}/${lockselfname}" ]; then + rm -f "${rootdir}/${lockselfname}" +fi core_exit.sh From 0a575f666db459ab559fdf25b7a6979ec871a35c Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Apr 2018 13:19:04 +0200 Subject: [PATCH 6/7] Fixed & simplified log rotation changes from my previous commit --- lgsm/functions/command_start.sh | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/lgsm/functions/command_start.sh b/lgsm/functions/command_start.sh index 67c7c40a7..5c7b6ecf9 100644 --- a/lgsm/functions/command_start.sh +++ b/lgsm/functions/command_start.sh @@ -74,14 +74,16 @@ fn_start_tmux(){ # Log rotation fn_script_log_info "Rotating log files" - if [ "${engine}" == "unreal2" ]; then - if [ -f "${gamelog}" ]; then - mv "${gamelog}" "${gamelogdate}" - fi + if [ "${engine}" == "unreal2" ]&&[ -f "${gamelog}" ]; then + mv "${gamelog}" "${gamelogdate}" + fi + if [ -f "${lgsmlog}" ]; then mv "${lgsmlog}" "${lgsmlogdate}" + fi + if [ -f "${consolelog}" ]; then mv "${consolelog}" "${consolelogdate}" fi - + # Create lockfile date > "${rootdir}/${lockselfname}" cd "${executabledir}" From 0fe368fb937a26e98fc422618ecb616e67ee77fd Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Mon, 16 Apr 2018 14:21:14 +0100 Subject: [PATCH 7/7] space --- lgsm/functions/command_start.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_start.sh b/lgsm/functions/command_start.sh index 5c7b6ecf9..208910942 100644 --- a/lgsm/functions/command_start.sh +++ b/lgsm/functions/command_start.sh @@ -83,7 +83,7 @@ fn_start_tmux(){ if [ -f "${consolelog}" ]; then mv "${consolelog}" "${consolelogdate}" fi - + # Create lockfile date > "${rootdir}/${lockselfname}" cd "${executabledir}"