Browse Source

Added adjustments to script messages

* tmux will be killed just after sdtd telnet finishes
pull/351/head
Daniel Gibbs 10 years ago
parent
commit
9e29fa5a9f
  1. 17
      functions/fn_stop

17
functions/fn_stop

@ -41,7 +41,10 @@ fn_check_tmux
if [ "${gamename}" == "7 Days To Die" ] ; then
# if game is 7 Days To Die, we need special, graceful shutdown via telnet connection.
# Set below variable to be called for expect to operate correctly..
fn_printdots "Attempting graceful shutdown via telnet"
fn_scriptlog "Attempting graceful shutdown via telnet"
sleep 1
telnetip=127.0.0.1
sdtdshutdown=$( expect -c '
proc abort {} {
puts "Timeout or EOF\n"
@ -60,9 +63,13 @@ if [ "${gamename}" == "7 Days To Die" ] ; then
puts "Completed.\n"
')
echo -en "\n ${sdtdshutdown}"
fn_printok "${servername}"
fn_scriptlog "Performmed graceful shutdown of ${servername}"
else
fn_printok "Attempting graceful shutdown via telnet"
fn_scriptlog "Attempting graceful shutdown succeeded"
sleep 1
fn_printdots "${servername}"
fn_scriptlog "${servername}"
sleep 1
fi
pid=$(tmux list-sessions 2>&1|awk '{print $1}'|grep -Ec "^${servicename}:")
if [ "${pid}" == "0" ]; then
fn_printfail "${servername} is already stopped"
@ -72,7 +79,7 @@ else
fn_printok "${servername}"
fn_scriptlog "Stopped ${servername}"
fi
fi
}
if [ "${gamename}" == "Teamspeak 3" ]; then
fn_stop_teamspeak3

Loading…
Cancel
Save