From 3862b5ccbebd8b0868a43d377f69ccfba0cc306d Mon Sep 17 00:00:00 2001 From: chriskoepf Date: Sun, 19 Apr 2015 00:13:24 -0400 Subject: [PATCH 1/4] Update sdtdserver Customized to include Telnet settings and Alloc's server fixes. --- 7DaysToDie/sdtdserver | 22 +++++++++++++++++++--- 1 file changed, 19 insertions(+), 3 deletions(-) diff --git a/7DaysToDie/sdtdserver b/7DaysToDie/sdtdserver index 0523ed81d..69872e818 100644 --- a/7DaysToDie/sdtdserver +++ b/7DaysToDie/sdtdserver @@ -13,11 +13,27 @@ emailnotification="off" email="email@example.com" # Steam login -steamuser="username" -steampass="password" +steamuser="username" # 7 Days requires a registered user for downloads +steampass="password" # enter your password # Start Variables -ip="0.0.0.0" +ip="0.0.0.0" # can leave to answer on any IP + +# Telnet Variables - used for graceful shutdown +telnetip="127.0.0.1" # if 127.0.0.1 doesn't work, enter your public IP +telnetport="8081" # change to your customized port number +telnetpass="password" # set for your telnet password + +# Mod Variables + +# If you are using or want to use Alloc's Server Fixes, +# uncomment the variable below +# *****Note: It has happened where the core gets updated, but +# Alloc's fixes weren't updated yet. If this happens +# you may need to comment out or set to false temporarily +# until Alloc's patch is updated. Please see 7 Days To Die +# forum for details. Many people use this patch. +allocsfixes=true # set to true if you want installed, false or comment if not # http://7daystodie.gamepedia.com/Server fn_parms(){ From d27f30c4988ee5025df05655e19886b38288844c Mon Sep 17 00:00:00 2001 From: chriskoepf Date: Sun, 19 Apr 2015 00:17:42 -0400 Subject: [PATCH 2/4] 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. --- functions/fn_stop | 48 ++++++++++++++++++++++++++++++++++------------- 1 file changed, 35 insertions(+), 13 deletions(-) diff --git a/functions/fn_stop b/functions/fn_stop index a57899cd9..04046ce3f 100644 --- a/functions/fn_stop +++ b/functions/fn_stop @@ -37,23 +37,45 @@ fn_printdots "${servername}" fn_scriptlog "${servername}" sleep 1 fn_check_tmux -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" + +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 - tmux kill-session -t ${servicename} - fn_printok "${servername}" - fn_scriptlog "Stopped ${servername}" + 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" + else + tmux kill-session -t ${servicename} + fn_printok "${servername}" + fn_scriptlog "Stopped ${servername}" + fi fi -# Remove lock file -rm -f "${rootdir}/${lockselfname}" -sleep 1 -echo -en "\n" -} if [ "${gamename}" == "Teamspeak 3" ]; then fn_stop_teamspeak3 else fn_stop_tmux -fi \ No newline at end of file +fi From a3ad938c4ba7c30396e231268441d5394559088d Mon Sep 17 00:00:00 2001 From: chriskoepf Date: Sun, 19 Apr 2015 00:28:09 -0400 Subject: [PATCH 3/4] Update fn_validate --- functions/fn_validate | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) diff --git a/functions/fn_validate b/functions/fn_validate index be9c51d31..67ffde340 100644 --- a/functions/fn_validate +++ b/functions/fn_validate @@ -24,8 +24,34 @@ cd "${rootdir}" cd "steamcmd" ./steamcmd.sh +login "${steamuser}" "${steampass}" +force_install_dir "${filesdir}" +app_update "${appid}" validate +quit|tee -a "${scriptlog}" fn_scriptlog "Checking complete" -} +# addition for 7 Days to Die - very popular server addon run on most dedicated servers +# file validation breaks the mod and it needs reinstalling. +if [ "${allocsfixes}" = true ]; then + sleep 5 + fn_scriptlog "Installing Alloc's Server Fixes" + echo -en "\n" + sleep 5 + echo -en "Installing Alloc's Server Fixes\n" + cd "${rootdir}"/serverfiles/ + rm -rf server_fixes.tar.gz + wget http://illy.bz/fi/7dtd/server_fixes.tar.gz + if [ -f "server_fixes.tar.gz" ]; then + tar -xzf server_fixes.tar.gz + rm -rf server_fixes.tar.gz + fn_scriptlog "Server Fixes Installed" + echo -en "Alloc's Server Fixes have been installed.\n" + else + if [ ! -f "server_fixes.tar.gz" ]; then + fn_scriptlog "Error downloading Server Fixes!" + fi + echo -en "There was a problem installing Alloc's Server Fixes!" + fi + + fn_scriptlog "Alloc's Server Fixes installed." + echo -en "FAlloc's Server Fixes installed.\n" +fi +} fn_check_root fn_check_systemdir From 7e866e28261a7c7cf9591604a39c625e60cd7144 Mon Sep 17 00:00:00 2001 From: chriskoepf Date: Sun, 19 Apr 2015 00:38:36 -0400 Subject: [PATCH 4/4] Update fn_validate Made a custom change for 7 Days To Die. If user wants or has Alloc's server fixes installed, they need to set the variable in the sdtdserver script to true and then the added coded in fn_validate will now download and install Alloc's fixes automatically. Could possibly be put in a separate file and called by a function, but validate isn't run constantly so the extra few lines of code shouldn't matter. --- functions/fn_validate | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/fn_validate b/functions/fn_validate index 67ffde340..0977a4fd0 100644 --- a/functions/fn_validate +++ b/functions/fn_validate @@ -26,7 +26,7 @@ cd "steamcmd" fn_scriptlog "Checking complete" # addition for 7 Days to Die - very popular server addon run on most dedicated servers -# file validation breaks the mod and it needs reinstalling. +# file validation breaks this addon and it requires re-installation each time. if [ "${allocsfixes}" = true ]; then sleep 5 fn_scriptlog "Installing Alloc's Server Fixes"