From 2b34cf7da8030db61a22a26519c5d746dbfebd21 Mon Sep 17 00:00:00 2001 From: yuuki89 Date: Thu, 1 May 2014 21:03:12 +0800 Subject: [PATCH 1/2] Minor improvements, more options Moved rootdir variable so that it's easier to define paths in fn_parms() Fixed password parameter by adding double quotes - Error: Invalid command line (Expected value for option 'password') Added double quotes to text type parameters - don't put quotes in the password variables or it'll break! Added configpath variable to define where configs are loaded from (used to load from ~/.config/*, but now will load from ~/server1/*) Added mods parameter; add mod ids delimited by space e.g. to use NS2+ and Shine: "812f004 706d242" Added modstorage parameter; define a directory to store mods downloaded from Steam Workshop (used to load from ~/.config/Workshop/*, but now will load from ~/server1/Workshop/*) --- NaturalSelection2/ns2server | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/NaturalSelection2/ns2server b/NaturalSelection2/ns2server index 167e035a4..93eb9a061 100644 --- a/NaturalSelection2/ns2server +++ b/NaturalSelection2/ns2server @@ -17,7 +17,7 @@ steamuser="username" steampass="password" # Start Variables - +rootdir="$(cd "$(dirname "${BASH_SOURCE[0]}" )" && pwd )" defaultmap="ns2_summit" port="27015" maxplayers="24" @@ -26,9 +26,12 @@ servername="NS2 Server" webadminuser="admin" webadminpass="admin" webadminport="8080" +configpath="server1" +modstorage="server1/Workshop" +mods="" password="" fn_parms(){ -parms="-name \"${servername}\" -port ${port} -webadmin -webdomain ${ip} -webuser ${webadminuser} -webpassword ${webadminpass} -webport ${webadminport} -map ${defaultmap} -limit ${maxplayers} -password ${password}" +parms="-name \"${servername}\" -port ${port} -webadmin -webdomain ${ip} -webuser ${webadminuser} -webpassword \"${webadminpass}\" -webport ${webadminport} -map ${defaultmap} -limit ${maxplayers} -config_path \"${rootdir}/${configpath}\" -modstorage \"${rootdir}/${modstorage}\" -mods \"${mods}\" -password \"${password}\"" } #### Advanced Variables #### @@ -40,8 +43,7 @@ servicename="ns2-server" gamename="Natural Selection 2" engine="spark" -# Directorys -rootdir="$(cd "$(dirname "${BASH_SOURCE[0]}" )" && pwd )" +# Directories selfname="$0" filesdir="${rootdir}/serverfiles" systemdir="${filesdir}" @@ -816,4 +818,4 @@ case "$1" in echo "Usage: $0 {start|stop|restart|update|update-restart|validate|validate-restart|monitor|email-test|details|backup|console|debug|install}" exit 1;; esac -exit \ No newline at end of file +exit From afb3f89d8ac5fc1f02458798eaeea876491484bb Mon Sep 17 00:00:00 2001 From: yuuki89 Date: Tue, 6 May 2014 11:07:07 +0800 Subject: [PATCH 2/2] Workaround to send email in plain text Email appears as "noname" attachment in Gmail accounts (and probably others but I did not test on): Content-Type: application/octet-stream Content-Transfer-Encoding: base64 So use cat -v as a workaround See: http://ask.fclose.com/305/plain-pipelined-content-application-octet-stream-attachment Also recommended to apply this fix to all other server scripts for consistency reasons. --- NaturalSelection2/ns2server | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NaturalSelection2/ns2server b/NaturalSelection2/ns2server index 93eb9a061..c11ccfaa5 100644 --- a/NaturalSelection2/ns2server +++ b/NaturalSelection2/ns2server @@ -359,7 +359,7 @@ if [ ! -z "${gamelogdir}" ]; then echo -e "\n\nServer log\n====================\n" >> "${emaillog}" tail "${gamelogdir}"/*|grep -v "==>"|sed '/^$/d'|tail -25 >> "${emaillog}" fi -mail -s "${subject}" ${email} < "${emaillog}" +cat -v "${emaillog}" | mail -s "${subject}" ${email} fn_printinfo "Sent email notification to ${email}" sleep 1 echo -en "\n"