diff --git a/functions/fn_console b/functions/fn_console index 171ba5ac9..d44b0cee7 100644 --- a/functions/fn_console +++ b/functions/fn_console @@ -26,6 +26,7 @@ esac done fn_printdots "Starting" sleep 1 +fn_tmuxcheck tmuxwc=$(tmux list-sessions 2>&1|awk '{print $1}'|grep -v failed|grep -Ec "^${servicename}:") if [ "${tmuxwc}" -eq 1 ]; then fn_printoknl "Starting" diff --git a/functions/fn_functions b/functions/fn_functions index 4517f96ab..2a5442af0 100644 --- a/functions/fn_functions +++ b/functions/fn_functions @@ -99,6 +99,11 @@ functionfile="${FUNCNAME}" fn_runfunction } +fn_tmuxcheck(){ +functionfile="${FUNCNAME}" +fn_runfunction +} + fn_unreal2compressmaps(){ functionfile="${FUNCNAME}" fn_runfunction diff --git a/functions/fn_startserver b/functions/fn_startserver index 16e13afe3..db29f89e5 100644 --- a/functions/fn_startserver +++ b/functions/fn_startserver @@ -6,7 +6,7 @@ # Description: Starts the server. -modulename="Starting" +local modulename="Starting" fn_rootcheck fn_syscheck fn_autoip @@ -16,6 +16,10 @@ if [ "${gamename}" == "Counter Strike: Global Offensive" ]; then fi fn_parms fn_logmanager +fn_printdots "${servername}" +fn_scriptlog "${servername}" +fn_tmuxcheck +sleep 1 tmuxwc=$(tmux list-sessions 2>&1|awk '{print $1}'|grep -v failed|grep -Ec "^${servicename}:") if [ "${tmuxwc}" -eq 0 ]; then fn_scriptlog "Rotating log files" @@ -25,9 +29,7 @@ if [ "${tmuxwc}" -eq 0 ]; then mv "${scriptlog}" "${scriptlogdate}" mv "${consolelog}" "${consolelogdate}" fi -fn_printdots "${servername}" -fn_scriptlog "${servername}" -sleep 1 + if [ "${tmuxwc}" -eq 1 ]; then fn_printinfo "${servername} is already running" fn_scriptlog "${servername} is already running" diff --git a/functions/fn_stopserver b/functions/fn_stopserver index f337d4614..36621cde8 100644 --- a/functions/fn_stopserver +++ b/functions/fn_stopserver @@ -6,13 +6,14 @@ # Description: Stops the server. -modulename="Stopping" +local modulename="Stopping" fn_rootcheck fn_syscheck -pid=$(tmux list-sessions 2>&1|awk '{print $1}'|grep -Ec "^${servicename}:") fn_printdots "${servername}" fn_scriptlog "${servername}" sleep 1 +fn_tmuxcheck +pid=$(tmux list-sessions 2>&1|awk '{print $1}'|grep -Ec "^${servicename}:") if [ "${pid}" == "0" ]; then fn_printfail "${servername} is already stopped" fn_scriptlog "${servername} is already stopped"