Browse Source

Update fn_stop

Modified stop function to allow for graceful shutdown of a 7 Days To Die server.  The file will still work for other game servers as it checks for the game name to be "7 Days To Die" as set in the sdtdserver script file and it also uses the new telnet variables I added to the sdtdserver script.
If not being run for 7 Days To Die, it reverts to the previous stop method of killing the server process.
pull/349/head
chriskoepf 10 years ago
parent
commit
d27f30c498
  1. 32
      functions/fn_stop

32
functions/fn_stop

@ -37,6 +37,32 @@ fn_printdots "${servername}"
fn_scriptlog "${servername}"
sleep 1
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..
sdtdshutdown=$( expect -c '
proc abort {} {
puts "Timeout or EOF\n"
exit 1
}
spawn telnet '"${telnetip}"' '"${telnetport}"'
expect {
"password:" { send "'"${telnetpass}"'\r" }
default abort
}
expect {
"session." { send "shutdown\r" }
default abort
}
expect { eof }
puts "Completed.\n"
')
echo -en "\n ${sdtdshutdown}"
fn_printok "${servername}"
fn_scriptlog "Performmed graceful shutdown of ${servername}"
else
pid=$(tmux list-sessions 2>&1|awk '{print $1}'|grep -Ec "^${servicename}:")
if [ "${pid}" == "0" ]; then
fn_printfail "${servername} is already stopped"
@ -46,11 +72,7 @@ else
fn_printok "${servername}"
fn_scriptlog "Stopped ${servername}"
fi
# Remove lock file
rm -f "${rootdir}/${lockselfname}"
sleep 1
echo -en "\n"
}
fi
if [ "${gamename}" == "Teamspeak 3" ]; then
fn_stop_teamspeak3

Loading…
Cancel
Save