From 13b2b2bbe3c35d7b787c1b7ee350e9d5b6bf0aec Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 3 Jan 2015 23:46:05 +0000 Subject: [PATCH] Migrated scripts to use fn_functions * Scripts have been migrated to use fn_functions * Major changes please report any bug right away --- 7DaysToDie/sdtdserver | 2 +- Arma3/arma3server | 2 +- BladeSymphony/bsserver | 261 +++------------------ CounterStrike/csserver | 254 ++------------------- CounterStrikeConditionZero/csczserver | 254 ++------------------- CounterStrikeGlobalOffensive/csgoserver | 261 +++------------------ CounterStrikeSource/cssserver | 256 +++------------------ DayOfDefeat/dodserver | 256 +++------------------ DayOfDefeatSource/dodsserver | 256 +++------------------ FistfulOfFrags/fofserver | 263 +++------------------ GarrysMod/gmodserver | 263 +++------------------ HalfLife2Deathmatch/hl2dmserver | 256 +++------------------ HalfLifeDeathmatchClassic/hldmcserver | 256 +++------------------ Insurgency/insserver | 263 +++------------------ JustCause2/jc2server | 256 +++------------------ KillingFloor/kfserver | 290 ++++-------------------- Left4Dead/l4dserver | 256 +++------------------ Left4Dead2/l4d2server | 256 +++------------------ NaturalSelection2/ns2server | 256 +++------------------ NoMoreRoomInHell/nmrihserver | 263 +++------------------ RedOrchestra/roserver | 268 +++------------------- SeriousSam3BFE/ss3sserver | 259 ++------------------- TeamFortress2/tf2server | 256 +++------------------ TeamFortressClassic/tfcserver | 256 +++------------------ UnrealTournament2004/ut2k4server | 163 ++----------- UnrealTournament99/ut99server | 240 ++------------------ 26 files changed, 635 insertions(+), 5487 deletions(-) diff --git a/7DaysToDie/sdtdserver b/7DaysToDie/sdtdserver index d3767bb6c..c2a538076 100644 --- a/7DaysToDie/sdtdserver +++ b/7DaysToDie/sdtdserver @@ -118,7 +118,7 @@ case "$1" in restart) fn_restartserver;; update) - norestart=1;; + norestart=1; fn_versioncheck;; update-restart) fn_versioncheck;; diff --git a/Arma3/arma3server b/Arma3/arma3server index efa0387c3..dba879689 100644 --- a/Arma3/arma3server +++ b/Arma3/arma3server @@ -118,7 +118,7 @@ case "$1" in restart) fn_restartserver;; update) - norestart=1;; + norestart=1; fn_versioncheck;; update-restart) fn_versioncheck;; diff --git a/BladeSymphony/bsserver b/BladeSymphony/bsserver index b35e42a48..4133caee9 100644 --- a/BladeSymphony/bsserver +++ b/BladeSymphony/bsserver @@ -3,7 +3,7 @@ # Server Management Script # Author: Daniel Gibbs # Website: http://danielgibbs.co.uk -# Version: 011214 +# Version: 010115 #### Variables #### @@ -72,258 +72,50 @@ consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%d-%m-%Y-%H-%M- ##### Script ##### # Do not edit -# unless you know -# what you are doing -fn_scriptlog(){ - echo -e "$(date '+%b %d %H:%M:%S') ${servicename}: ${1}" >> "${scriptlog}" -} - -# [ FAIL ] -fn_printfail(){ - echo -en "\r\033[K[\e[0;31m FAIL \e[0;39m] $@" -} - -fn_printfailnl(){ - echo -e "\r\033[K[\e[0;31m FAIL \e[0;39m] $@" -} - -# [ OK ] -fn_printok(){ - echo -en "\r\033[K[\e[0;32m OK \e[0;39m] $@" -} - -fn_printoknl(){ - echo -e "\r\033[K[\e[0;32m OK \e[0;39m] $@" -} - -# [ INFO ] -fn_printinfo(){ - echo -en "\r\033[K[\e[0;36m INFO \e[0;39m] $@" -} - -fn_printinfonl(){ - echo -e "\r\033[K[\e[0;36m INFO \e[0;39m] $@" -} - -# [ WARN ] -fn_printwarn(){ - echo -en "\r\033[K[\e[1;33m WARN \e[0;39m] $@" -} - -fn_printwarnnl(){ - echo -e "\r\033[K[\e[1;33m WARN \e[0;39m] $@" -} - -# [ .... ] -fn_printdots(){ - echo -en "\r\033[K[ .... ] $@" -} - -fn_rootcheck(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_syscheck(){ -if [ ! -e "${systemdir}" ]; then - fn_printfailnl "Cannot access ${systemdir}: No such directory" - exit +fn_install(){ +fn_rootcheck +fn_header +if [ -z "${autoinstall}" ]; then + fn_serverdirectory + fn_header fi +fn_steamdl +fn_steaminstall +fn_steamfix +fn_glibcfix +fn_loginstall +fn_getquery +fn_serverconfig +fn_header +fn_details +fn_installcomplete } -fn_autoip(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_logmanager(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_debugserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_console(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_backupserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_distro(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_uptime(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_load(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_emailnotification(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_emailtest(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_serverquery(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_monitorserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_updateserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_validateserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_restartserver(){ -fn_scriptlog "Restarting ${servername}" -fn_stopserver -fn_startserver -} - -fn_stopserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_startserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_details(){ +fn_functions(){ +# Functions are defines in fn_functions. functionfile="${FUNCNAME}" fn_runfunction } fn_runfunction(){ -# Download function if missing +# Functions are downloaded and run with this function if [ ! -f "${rootdir}/functions/${functionfile}" ]; then cd "${rootdir}" if [ ! -d "functions" ]; then mkdir functions fi - echo "loading ${functionfile}..." cd functions - wget --no-check-certificate -nv -N https://raw.githubusercontent.com/dgibbs64/linuxgameservers/master/functions/${functionfile} + echo -e "loading ${functionfile}...\c" + wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgameservers/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45- chmod +x "${functionfile}" cd "${rootdir}" sleep 1 - echo "" fi -# Run function source "${rootdir}/functions/${functionfile}" } -# -## Installer -# - -fn_glibcfix(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_header(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_steamdl(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_steaminstall(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_steamfix(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_loginstall(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_getquery(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_retryinstall(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_serverdirectory(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_serverconfig(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_install(){ -fn_rootcheck -fn_header -if [ -z "${autoinstall}" ]; then - fn_serverdirectory - fn_header -fi -fn_steamdl -fn_steaminstall -fn_steamfix -fn_glibcfix -fn_loginstall -fn_getquery -fn_serverconfig -fn_header -fn_details -echo "=================================" -echo "Install Complete!" -echo "" -echo "To start server type:" -echo "${selfname} start" -echo "" -} - -fn_autoinstall(){ -autoinstall=1 -fn_install -} +fn_functions case "$1" in start) @@ -333,11 +125,10 @@ case "$1" in restart) fn_restartserver;; update) - fn_updateserver;; + norestart=1; + fn_versioncheck;; update-restart) - fn_stopserver - fn_updateserver - fn_startserver;; + fn_versioncheck;; validate) fn_validateserver;; validate-restart) diff --git a/CounterStrike/csserver b/CounterStrike/csserver index 4129d6209..79600d96d 100644 --- a/CounterStrike/csserver +++ b/CounterStrike/csserver @@ -3,7 +3,7 @@ # Server Management Script # Author: Daniel Gibbs # Website: http://danielgibbs.co.uk -# Version: 011214 +# Version: 010115 #### Variables #### @@ -71,252 +71,49 @@ consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%d-%m-%Y-%H-%M- ##### Script ##### # Do not edit -# unless you know -# what you are doing -fn_scriptlog(){ - echo -e "$(date '+%b %d %H:%M:%S') ${servicename}: ${1}" >> "${scriptlog}" -} - -# [ FAIL ] -fn_printfail(){ - echo -en "\r\033[K[\e[0;31m FAIL \e[0;39m] $@" -} - -fn_printfailnl(){ - echo -e "\r\033[K[\e[0;31m FAIL \e[0;39m] $@" -} - -# [ OK ] -fn_printok(){ - echo -en "\r\033[K[\e[0;32m OK \e[0;39m] $@" -} - -fn_printoknl(){ - echo -e "\r\033[K[\e[0;32m OK \e[0;39m] $@" -} - -# [ INFO ] -fn_printinfo(){ - echo -en "\r\033[K[\e[0;36m INFO \e[0;39m] $@" -} - -fn_printinfonl(){ - echo -e "\r\033[K[\e[0;36m INFO \e[0;39m] $@" -} - -# [ WARN ] -fn_printwarn(){ - echo -en "\r\033[K[\e[1;33m WARN \e[0;39m] $@" -} - -fn_printwarnnl(){ - echo -e "\r\033[K[\e[1;33m WARN \e[0;39m] $@" -} - -# [ .... ] -fn_printdots(){ - echo -en "\r\033[K[ .... ] $@" -} - -fn_rootcheck(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_syscheck(){ -if [ ! -e "${systemdir}" ]; then - fn_printfailnl "Cannot access ${systemdir}: No such directory" - exit +fn_install(){ +fn_rootcheck +fn_header +if [ -z "${autoinstall}" ]; then + fn_serverdirectory + fn_header fi +fn_steamdl +fn_steaminstall +fn_steamfix +fn_loginstall +fn_getquery +fn_serverconfig +fn_header +fn_details +fn_installcomplete } -fn_autoip(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_logmanager(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_debugserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_console(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_backupserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_distro(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_uptime(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_load(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_emailnotification(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_emailtest(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_serverquery(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_monitorserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_updateserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_validateserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_restartserver(){ -fn_scriptlog "Restarting ${servername}" -fn_stopserver -fn_startserver -} - -fn_stopserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_startserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_details(){ +fn_functions(){ +# Functions are defines in fn_functions. functionfile="${FUNCNAME}" fn_runfunction } fn_runfunction(){ -# Download function if missing +# Functions are downloaded and run with this function if [ ! -f "${rootdir}/functions/${functionfile}" ]; then cd "${rootdir}" if [ ! -d "functions" ]; then mkdir functions fi - echo "loading ${functionfile}..." cd functions - wget --no-check-certificate -nv -N https://raw.githubusercontent.com/dgibbs64/linuxgameservers/master/functions/${functionfile} + echo -e "loading ${functionfile}...\c" + wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgameservers/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45- chmod +x "${functionfile}" cd "${rootdir}" sleep 1 - echo "" fi -# Run function source "${rootdir}/functions/${functionfile}" } -# -## Installer -# - -fn_header(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_steamdl(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_steaminstall(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_steamfix(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_loginstall(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_getquery(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_retryinstall(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_serverdirectory(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_serverconfig(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_install(){ -fn_rootcheck -fn_header -if [ -z "${autoinstall}" ]; then - fn_serverdirectory - fn_header -fi -fn_steamdl -fn_steaminstall -fn_steamfix -fn_loginstall -fn_getquery -fn_serverconfig -fn_header -fn_details -echo "=================================" -echo "Install Complete!" -echo "" -echo "To start server type:" -echo "${selfname} start" -echo "" -} - -fn_autoinstall(){ -autoinstall=1 -fn_install -} +fn_functions case "$1" in start) @@ -326,11 +123,10 @@ case "$1" in restart) fn_restartserver;; update) - fn_updateserver;; + norestart=1; + fn_versioncheck;; update-restart) - fn_stopserver - fn_updateserver - fn_startserver;; + fn_versioncheck;; validate) fn_validateserver;; validate-restart) diff --git a/CounterStrikeConditionZero/csczserver b/CounterStrikeConditionZero/csczserver index f8b5b1da3..df096912f 100644 --- a/CounterStrikeConditionZero/csczserver +++ b/CounterStrikeConditionZero/csczserver @@ -3,7 +3,7 @@ # Server Management Script # Author: Daniel Gibbs # Website: http://danielgibbs.co.uk -# Version: 011214 +# Version: 010115 #### Variables #### @@ -71,252 +71,49 @@ consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%d-%m-%Y-%H-%M- ##### Script ##### # Do not edit -# unless you know -# what you are doing -fn_scriptlog(){ - echo -e "$(date '+%b %d %H:%M:%S') ${servicename}: ${1}" >> "${scriptlog}" -} - -# [ FAIL ] -fn_printfail(){ - echo -en "\r\033[K[\e[0;31m FAIL \e[0;39m] $@" -} - -fn_printfailnl(){ - echo -e "\r\033[K[\e[0;31m FAIL \e[0;39m] $@" -} - -# [ OK ] -fn_printok(){ - echo -en "\r\033[K[\e[0;32m OK \e[0;39m] $@" -} - -fn_printoknl(){ - echo -e "\r\033[K[\e[0;32m OK \e[0;39m] $@" -} - -# [ INFO ] -fn_printinfo(){ - echo -en "\r\033[K[\e[0;36m INFO \e[0;39m] $@" -} - -fn_printinfonl(){ - echo -e "\r\033[K[\e[0;36m INFO \e[0;39m] $@" -} - -# [ WARN ] -fn_printwarn(){ - echo -en "\r\033[K[\e[1;33m WARN \e[0;39m] $@" -} - -fn_printwarnnl(){ - echo -e "\r\033[K[\e[1;33m WARN \e[0;39m] $@" -} - -# [ .... ] -fn_printdots(){ - echo -en "\r\033[K[ .... ] $@" -} - -fn_rootcheck(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_syscheck(){ -if [ ! -e "${systemdir}" ]; then - fn_printfailnl "Cannot access ${systemdir}: No such directory" - exit +fn_install(){ +fn_rootcheck +fn_header +if [ -z "${autoinstall}" ]; then + fn_serverdirectory + fn_header fi +fn_steamdl +fn_steaminstall +fn_steamfix +fn_loginstall +fn_getquery +fn_serverconfig +fn_header +fn_details +fn_installcomplete } -fn_autoip(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_logmanager(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_debugserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_console(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_backupserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_distro(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_uptime(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_load(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_emailnotification(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_emailtest(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_serverquery(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_monitorserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_updateserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_validateserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_restartserver(){ -fn_scriptlog "Restarting ${servername}" -fn_stopserver -fn_startserver -} - -fn_stopserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_startserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_details(){ +fn_functions(){ +# Functions are defines in fn_functions. functionfile="${FUNCNAME}" fn_runfunction } fn_runfunction(){ -# Download function if missing +# Functions are downloaded and run with this function if [ ! -f "${rootdir}/functions/${functionfile}" ]; then cd "${rootdir}" if [ ! -d "functions" ]; then mkdir functions fi - echo "loading ${functionfile}..." cd functions - wget --no-check-certificate -nv -N https://raw.githubusercontent.com/dgibbs64/linuxgameservers/master/functions/${functionfile} + echo -e "loading ${functionfile}...\c" + wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgameservers/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45- chmod +x "${functionfile}" cd "${rootdir}" sleep 1 - echo "" fi -# Run function source "${rootdir}/functions/${functionfile}" } -# -## Installer -# - -fn_header(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_steamdl(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_steaminstall(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_steamfix(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_loginstall(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_getquery(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_retryinstall(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_serverdirectory(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_serverconfig(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_install(){ -fn_rootcheck -fn_header -if [ -z "${autoinstall}" ]; then - fn_serverdirectory - fn_header -fi -fn_steamdl -fn_steaminstall -fn_steamfix -fn_loginstall -fn_getquery -fn_serverconfig -fn_header -fn_details -echo "=================================" -echo "Install Complete!" -echo "" -echo "To start server type:" -echo "${selfname} start" -echo "" -} - -fn_autoinstall(){ -autoinstall=1 -fn_install -} +fn_functions case "$1" in start) @@ -326,11 +123,10 @@ case "$1" in restart) fn_restartserver;; update) - fn_updateserver;; + norestart=1; + fn_versioncheck;; update-restart) - fn_stopserver - fn_updateserver - fn_startserver;; + fn_versioncheck;; validate) fn_validateserver;; validate-restart) diff --git a/CounterStrikeGlobalOffensive/csgoserver b/CounterStrikeGlobalOffensive/csgoserver index b45ef5b00..7a83f27eb 100644 --- a/CounterStrikeGlobalOffensive/csgoserver +++ b/CounterStrikeGlobalOffensive/csgoserver @@ -3,7 +3,7 @@ # Server Management Script # Author: Daniel Gibbs # Website: http://danielgibbs.co.uk -# Version: 011214 +# Version: 010115 #### Variables #### @@ -89,258 +89,50 @@ consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%d-%m-%Y-%H-%M- ##### Script ##### # Do not edit -# unless you know -# what you are doing -fn_scriptlog(){ - echo -e "$(date '+%b %d %H:%M:%S') ${servicename}: ${1}" >> "${scriptlog}" -} - -# [ FAIL ] -fn_printfail(){ - echo -en "\r\033[K[\e[0;31m FAIL \e[0;39m] $@" -} - -fn_printfailnl(){ - echo -e "\r\033[K[\e[0;31m FAIL \e[0;39m] $@" -} - -# [ OK ] -fn_printok(){ - echo -en "\r\033[K[\e[0;32m OK \e[0;39m] $@" -} - -fn_printoknl(){ - echo -e "\r\033[K[\e[0;32m OK \e[0;39m] $@" -} - -# [ INFO ] -fn_printinfo(){ - echo -en "\r\033[K[\e[0;36m INFO \e[0;39m] $@" -} - -fn_printinfonl(){ - echo -e "\r\033[K[\e[0;36m INFO \e[0;39m] $@" -} - -# [ WARN ] -fn_printwarn(){ - echo -en "\r\033[K[\e[1;33m WARN \e[0;39m] $@" -} - -fn_printwarnnl(){ - echo -e "\r\033[K[\e[1;33m WARN \e[0;39m] $@" -} - -# [ .... ] -fn_printdots(){ - echo -en "\r\033[K[ .... ] $@" -} - -fn_rootcheck(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_syscheck(){ -if [ ! -e "${systemdir}" ]; then - fn_printfailnl "Cannot access ${systemdir}: No such directory" - exit +fn_install(){ +fn_rootcheck +fn_header +if [ -z "${autoinstall}" ]; then + fn_serverdirectory + fn_header fi +fn_steamdl +fn_steaminstall +fn_steamfix +fn_loginstall +fn_getquery +fn_serverconfig +fn_csgofix +fn_header +fn_details +fn_installcomplete } -fn_autoip(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_logmanager(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_debugserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_console(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_backupserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_distro(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_uptime(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_load(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_emailnotification(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_emailtest(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_serverquery(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_monitorserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_updateserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_validateserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_restartserver(){ -fn_scriptlog "Restarting ${servername}" -fn_stopserver -fn_startserver -} - -fn_stopserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_startserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_details(){ +fn_functions(){ +# Functions are defines in fn_functions. functionfile="${FUNCNAME}" fn_runfunction } fn_runfunction(){ -# Download function if missing +# Functions are downloaded and run with this function if [ ! -f "${rootdir}/functions/${functionfile}" ]; then cd "${rootdir}" if [ ! -d "functions" ]; then mkdir functions fi - echo "loading ${functionfile}..." cd functions - wget --no-check-certificate -nv -N https://raw.githubusercontent.com/dgibbs64/linuxgameservers/master/functions/${functionfile} + echo -e "loading ${functionfile}...\c" + wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgameservers/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45- chmod +x "${functionfile}" cd "${rootdir}" sleep 1 - echo "" fi -# Run function source "${rootdir}/functions/${functionfile}" } -# -## Installer -# - -fn_csgofix(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_header(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_steamdl(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_steaminstall(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_steamfix(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_loginstall(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_getquery(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_retryinstall(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_serverdirectory(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_serverconfig(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_install(){ -fn_rootcheck -fn_header -if [ -z "${autoinstall}" ]; then - fn_serverdirectory - fn_header -fi -fn_steamdl -fn_steaminstall -fn_steamfix -fn_loginstall -fn_getquery -fn_serverconfig -fn_csgofix -fn_header -fn_details -echo "=================================" -echo "Install Complete!" -echo "" -echo "To start server type:" -echo "${selfname} start" -echo "" -} - -fn_autoinstall(){ -autoinstall=1 -fn_install -} +fn_functions case "$1" in start) @@ -350,11 +142,10 @@ case "$1" in restart) fn_restartserver;; update) - fn_updateserver;; + norestart=1; + fn_versioncheck;; update-restart) - fn_stopserver - fn_updateserver - fn_startserver;; + fn_versioncheck;; validate) fn_validateserver;; validate-restart) diff --git a/CounterStrikeSource/cssserver b/CounterStrikeSource/cssserver index 9fb104fd9..f15e0527e 100644 --- a/CounterStrikeSource/cssserver +++ b/CounterStrikeSource/cssserver @@ -3,7 +3,7 @@ # Server Management Script # Author: Daniel Gibbs # Website: http://danielgibbs.co.uk -# Version: 011214 +# Version: 010115 #### Variables #### @@ -40,7 +40,7 @@ gamename="Counter Strike: Source" engine="source" # Directories -rootdir="$(cd "$(dirname "${BASH_SOURCE[0]}" )" && pwd )" +rootdir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" selfname="$0" lockselfname=$(echo ".${servicename}.lock") filesdir="${rootdir}/serverfiles" @@ -72,252 +72,49 @@ consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%d-%m-%Y-%H-%M- ##### Script ##### # Do not edit -# unless you know -# what you are doing -fn_scriptlog(){ - echo -e "$(date '+%b %d %H:%M:%S') ${servicename}: ${1}" >> "${scriptlog}" -} - -# [ FAIL ] -fn_printfail(){ - echo -en "\r\033[K[\e[0;31m FAIL \e[0;39m] $@" -} - -fn_printfailnl(){ - echo -e "\r\033[K[\e[0;31m FAIL \e[0;39m] $@" -} - -# [ OK ] -fn_printok(){ - echo -en "\r\033[K[\e[0;32m OK \e[0;39m] $@" -} - -fn_printoknl(){ - echo -e "\r\033[K[\e[0;32m OK \e[0;39m] $@" -} - -# [ INFO ] -fn_printinfo(){ - echo -en "\r\033[K[\e[0;36m INFO \e[0;39m] $@" -} - -fn_printinfonl(){ - echo -e "\r\033[K[\e[0;36m INFO \e[0;39m] $@" -} - -# [ WARN ] -fn_printwarn(){ - echo -en "\r\033[K[\e[1;33m WARN \e[0;39m] $@" -} - -fn_printwarnnl(){ - echo -e "\r\033[K[\e[1;33m WARN \e[0;39m] $@" -} - -# [ .... ] -fn_printdots(){ - echo -en "\r\033[K[ .... ] $@" -} - -fn_rootcheck(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_syscheck(){ -if [ ! -e "${systemdir}" ]; then - fn_printfailnl "Cannot access ${systemdir}: No such directory" - exit +fn_install(){ +fn_rootcheck +fn_header +if [ -z "${autoinstall}" ]; then + fn_serverdirectory + fn_header fi +fn_steamdl +fn_steaminstall +fn_steamfix +fn_loginstall +fn_getquery +fn_serverconfig +fn_header +fn_details +fn_installcomplete } -fn_autoip(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_logmanager(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_debugserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_console(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_backupserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_distro(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_uptime(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_load(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_emailnotification(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_emailtest(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_serverquery(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_monitorserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_updateserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_validateserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_restartserver(){ -fn_scriptlog "Restarting ${servername}" -fn_stopserver -fn_startserver -} - -fn_stopserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_startserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_details(){ +fn_functions(){ +# Functions are defines in fn_functions. functionfile="${FUNCNAME}" fn_runfunction } fn_runfunction(){ -# Download function if missing +# Functions are downloaded and run with this function if [ ! -f "${rootdir}/functions/${functionfile}" ]; then cd "${rootdir}" if [ ! -d "functions" ]; then mkdir functions fi - echo "loading ${functionfile}..." cd functions - wget --no-check-certificate -nv -N https://raw.githubusercontent.com/dgibbs64/linuxgameservers/master/functions/${functionfile} + echo -e "loading ${functionfile}...\c" + wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgameservers/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45- chmod +x "${functionfile}" cd "${rootdir}" sleep 1 - echo "" fi -# Run function source "${rootdir}/functions/${functionfile}" } -# -## Installer -# - -fn_header(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_steamdl(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_steaminstall(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_steamfix(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_loginstall(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_getquery(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_retryinstall(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_serverdirectory(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_serverconfig(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_install(){ -fn_rootcheck -fn_header -if [ -z "${autoinstall}" ]; then - fn_serverdirectory - fn_header -fi -fn_steamdl -fn_steaminstall -fn_steamfix -fn_loginstall -fn_getquery -fn_serverconfig -fn_header -fn_details -echo "=================================" -echo "Install Complete!" -echo "" -echo "To start server type:" -echo "${selfname} start" -echo "" -} - -fn_autoinstall(){ -autoinstall=1 -fn_install -} +fn_functions case "$1" in start) @@ -327,11 +124,10 @@ case "$1" in restart) fn_restartserver;; update) - fn_updateserver;; + norestart=1; + fn_versioncheck;; update-restart) - fn_stopserver - fn_updateserver - fn_startserver;; + fn_versioncheck;; validate) fn_validateserver;; validate-restart) diff --git a/DayOfDefeat/dodserver b/DayOfDefeat/dodserver index e7323af3b..6b9907026 100644 --- a/DayOfDefeat/dodserver +++ b/DayOfDefeat/dodserver @@ -3,7 +3,7 @@ # Server Management Script # Author: Daniel Gibbs # Website: http://danielgibbs.co.uk -# Version: 011214 +# Version: 010115 #### Variables #### @@ -39,7 +39,7 @@ gamename="Day of Defeat" engine="goldsource" # Directories -rootdir="$(cd "$(dirname "${BASH_SOURCE[0]}" )" && pwd )" +rootdir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" selfname="$0" lockselfname=$(echo ".${servicename}.lock") filesdir="${rootdir}/serverfiles" @@ -71,252 +71,49 @@ consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%d-%m-%Y-%H-%M- ##### Script ##### # Do not edit -# unless you know -# what you are doing -fn_scriptlog(){ - echo -e "$(date '+%b %d %H:%M:%S') ${servicename}: ${1}" >> "${scriptlog}" -} - -# [ FAIL ] -fn_printfail(){ - echo -en "\r\033[K[\e[0;31m FAIL \e[0;39m] $@" -} - -fn_printfailnl(){ - echo -e "\r\033[K[\e[0;31m FAIL \e[0;39m] $@" -} - -# [ OK ] -fn_printok(){ - echo -en "\r\033[K[\e[0;32m OK \e[0;39m] $@" -} - -fn_printoknl(){ - echo -e "\r\033[K[\e[0;32m OK \e[0;39m] $@" -} - -# [ INFO ] -fn_printinfo(){ - echo -en "\r\033[K[\e[0;36m INFO \e[0;39m] $@" -} - -fn_printinfonl(){ - echo -e "\r\033[K[\e[0;36m INFO \e[0;39m] $@" -} - -# [ WARN ] -fn_printwarn(){ - echo -en "\r\033[K[\e[1;33m WARN \e[0;39m] $@" -} - -fn_printwarnnl(){ - echo -e "\r\033[K[\e[1;33m WARN \e[0;39m] $@" -} - -# [ .... ] -fn_printdots(){ - echo -en "\r\033[K[ .... ] $@" -} - -fn_rootcheck(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_syscheck(){ -if [ ! -e "${systemdir}" ]; then - fn_printfailnl "Cannot access ${systemdir}: No such directory" - exit +fn_install(){ +fn_rootcheck +fn_header +if [ -z "${autoinstall}" ]; then + fn_serverdirectory + fn_header fi +fn_steamdl +fn_steaminstall +fn_steamfix +fn_loginstall +fn_getquery +fn_serverconfig +fn_header +fn_details +fn_installcomplete } -fn_autoip(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_logmanager(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_debugserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_console(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_backupserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_distro(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_uptime(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_load(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_emailnotification(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_emailtest(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_serverquery(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_monitorserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_updateserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_validateserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_restartserver(){ -fn_scriptlog "Restarting ${servername}" -fn_stopserver -fn_startserver -} - -fn_stopserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_startserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_details(){ +fn_functions(){ +# Functions are defines in fn_functions. functionfile="${FUNCNAME}" fn_runfunction } fn_runfunction(){ -# Download function if missing +# Functions are downloaded and run with this function if [ ! -f "${rootdir}/functions/${functionfile}" ]; then cd "${rootdir}" if [ ! -d "functions" ]; then mkdir functions fi - echo "loading ${functionfile}..." cd functions - wget --no-check-certificate -nv -N https://raw.githubusercontent.com/dgibbs64/linuxgameservers/master/functions/${functionfile} + echo -e "loading ${functionfile}...\c" + wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgameservers/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45- chmod +x "${functionfile}" cd "${rootdir}" sleep 1 - echo "" fi -# Run function source "${rootdir}/functions/${functionfile}" } -# -## Installer -# - -fn_header(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_steamdl(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_steaminstall(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_steamfix(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_loginstall(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_getquery(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_retryinstall(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_serverdirectory(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_serverconfig(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_install(){ -fn_rootcheck -fn_header -if [ -z "${autoinstall}" ]; then - fn_serverdirectory - fn_header -fi -fn_steamdl -fn_steaminstall -fn_steamfix -fn_loginstall -fn_getquery -fn_serverconfig -fn_header -fn_details -echo "=================================" -echo "Install Complete!" -echo "" -echo "To start server type:" -echo "${selfname} start" -echo "" -} - -fn_autoinstall(){ -autoinstall=1 -fn_install -} +fn_functions case "$1" in start) @@ -326,11 +123,10 @@ case "$1" in restart) fn_restartserver;; update) - fn_updateserver;; + norestart=1; + fn_versioncheck;; update-restart) - fn_stopserver - fn_updateserver - fn_startserver;; + fn_versioncheck;; validate) fn_validateserver;; validate-restart) diff --git a/DayOfDefeatSource/dodsserver b/DayOfDefeatSource/dodsserver index 3ee4045c8..c2a958b0c 100644 --- a/DayOfDefeatSource/dodsserver +++ b/DayOfDefeatSource/dodsserver @@ -3,7 +3,7 @@ # Server Management Script # Author: Daniel Gibbs # Website: http://danielgibbs.co.uk -# Version: 011214 +# Version: 010115 #### Variables #### @@ -40,7 +40,7 @@ gamename="Day of Defeat: Source" engine="source" # Directories -rootdir="$(cd "$(dirname "${BASH_SOURCE[0]}" )" && pwd )" +rootdir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" selfname="$0" lockselfname=$(echo ".${servicename}.lock") filesdir="${rootdir}/serverfiles" @@ -72,252 +72,49 @@ consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%d-%m-%Y-%H-%M- ##### Script ##### # Do not edit -# unless you know -# what you are doing -fn_scriptlog(){ - echo -e "$(date '+%b %d %H:%M:%S') ${servicename}: ${1}" >> "${scriptlog}" -} - -# [ FAIL ] -fn_printfail(){ - echo -en "\r\033[K[\e[0;31m FAIL \e[0;39m] $@" -} - -fn_printfailnl(){ - echo -e "\r\033[K[\e[0;31m FAIL \e[0;39m] $@" -} - -# [ OK ] -fn_printok(){ - echo -en "\r\033[K[\e[0;32m OK \e[0;39m] $@" -} - -fn_printoknl(){ - echo -e "\r\033[K[\e[0;32m OK \e[0;39m] $@" -} - -# [ INFO ] -fn_printinfo(){ - echo -en "\r\033[K[\e[0;36m INFO \e[0;39m] $@" -} - -fn_printinfonl(){ - echo -e "\r\033[K[\e[0;36m INFO \e[0;39m] $@" -} - -# [ WARN ] -fn_printwarn(){ - echo -en "\r\033[K[\e[1;33m WARN \e[0;39m] $@" -} - -fn_printwarnnl(){ - echo -e "\r\033[K[\e[1;33m WARN \e[0;39m] $@" -} - -# [ .... ] -fn_printdots(){ - echo -en "\r\033[K[ .... ] $@" -} - -fn_rootcheck(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_syscheck(){ -if [ ! -e "${systemdir}" ]; then - fn_printfailnl "Cannot access ${systemdir}: No such directory" - exit +fn_install(){ +fn_rootcheck +fn_header +if [ -z "${autoinstall}" ]; then + fn_serverdirectory + fn_header fi +fn_steamdl +fn_steaminstall +fn_steamfix +fn_loginstall +fn_getquery +fn_serverconfig +fn_header +fn_details +fn_installcomplete } -fn_autoip(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_logmanager(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_debugserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_console(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_backupserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_distro(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_uptime(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_load(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_emailnotification(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_emailtest(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_serverquery(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_monitorserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_updateserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_validateserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_restartserver(){ -fn_scriptlog "Restarting ${servername}" -fn_stopserver -fn_startserver -} - -fn_stopserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_startserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_details(){ +fn_functions(){ +# Functions are defines in fn_functions. functionfile="${FUNCNAME}" fn_runfunction } fn_runfunction(){ -# Download function if missing +# Functions are downloaded and run with this function if [ ! -f "${rootdir}/functions/${functionfile}" ]; then cd "${rootdir}" if [ ! -d "functions" ]; then mkdir functions fi - echo "loading ${functionfile}..." cd functions - wget --no-check-certificate -nv -N https://raw.githubusercontent.com/dgibbs64/linuxgameservers/master/functions/${functionfile} + echo -e "loading ${functionfile}...\c" + wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgameservers/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45- chmod +x "${functionfile}" cd "${rootdir}" sleep 1 - echo "" fi -# Run function source "${rootdir}/functions/${functionfile}" } -# -## Installer -# - -fn_header(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_steamdl(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_steaminstall(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_steamfix(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_loginstall(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_getquery(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_retryinstall(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_serverdirectory(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_serverconfig(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_install(){ -fn_rootcheck -fn_header -if [ -z "${autoinstall}" ]; then - fn_serverdirectory - fn_header -fi -fn_steamdl -fn_steaminstall -fn_steamfix -fn_loginstall -fn_getquery -fn_serverconfig -fn_header -fn_details -echo "=================================" -echo "Install Complete!" -echo "" -echo "To start server type:" -echo "${selfname} start" -echo "" -} - -fn_autoinstall(){ -autoinstall=1 -fn_install -} +fn_functions case "$1" in start) @@ -327,11 +124,10 @@ case "$1" in restart) fn_restartserver;; update) - fn_updateserver;; + norestart=1; + fn_versioncheck;; update-restart) - fn_stopserver - fn_updateserver - fn_startserver;; + fn_versioncheck;; validate) fn_validateserver;; validate-restart) diff --git a/FistfulOfFrags/fofserver b/FistfulOfFrags/fofserver index 7287fa5e6..b36759a2a 100644 --- a/FistfulOfFrags/fofserver +++ b/FistfulOfFrags/fofserver @@ -3,7 +3,7 @@ # Server Management Script # Author: Daniel Gibbs # Website: http://danielgibbs.co.uk -# Version: 011214 +# Version: 010115 #### Variables #### @@ -40,7 +40,7 @@ gamename="Fistful of Frags" engine="source" # Directories -rootdir="$(cd "$(dirname "${BASH_SOURCE[0]}" )" && pwd )" +rootdir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" selfname="$0" lockselfname=$(echo ".${servicename}.lock") filesdir="${rootdir}/serverfiles" @@ -72,258 +72,50 @@ consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%d-%m-%Y-%H-%M- ##### Script ##### # Do not edit -# unless you know -# what you are doing -fn_scriptlog(){ - echo -e "$(date '+%b %d %H:%M:%S') ${servicename}: ${1}" >> "${scriptlog}" -} - -# [ FAIL ] -fn_printfail(){ - echo -en "\r\033[K[\e[0;31m FAIL \e[0;39m] $@" -} - -fn_printfailnl(){ - echo -e "\r\033[K[\e[0;31m FAIL \e[0;39m] $@" -} - -# [ OK ] -fn_printok(){ - echo -en "\r\033[K[\e[0;32m OK \e[0;39m] $@" -} - -fn_printoknl(){ - echo -e "\r\033[K[\e[0;32m OK \e[0;39m] $@" -} - -# [ INFO ] -fn_printinfo(){ - echo -en "\r\033[K[\e[0;36m INFO \e[0;39m] $@" -} - -fn_printinfonl(){ - echo -e "\r\033[K[\e[0;36m INFO \e[0;39m] $@" -} - -# [ WARN ] -fn_printwarn(){ - echo -en "\r\033[K[\e[1;33m WARN \e[0;39m] $@" -} - -fn_printwarnnl(){ - echo -e "\r\033[K[\e[1;33m WARN \e[0;39m] $@" -} - -# [ .... ] -fn_printdots(){ - echo -en "\r\033[K[ .... ] $@" -} - -fn_rootcheck(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_syscheck(){ -if [ ! -e "${systemdir}" ]; then - fn_printfailnl "Cannot access ${systemdir}: No such directory" - exit +fn_install(){ +fn_rootcheck +fn_header +if [ -z "${autoinstall}" ]; then + fn_serverdirectory + fn_header fi +fn_steamdl +fn_steaminstall +fn_steamfix +fn_glibcfix +fn_loginstall +fn_getquery +fn_serverconfig +fn_header +fn_details +fn_installcomplete } -fn_autoip(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_logmanager(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_debugserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_console(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_backupserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_distro(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_uptime(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_load(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_emailnotification(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_emailtest(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_serverquery(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_monitorserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_updateserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_validateserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_restartserver(){ -fn_scriptlog "Restarting ${servername}" -fn_stopserver -fn_startserver -} - -fn_stopserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_startserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_details(){ +fn_functions(){ +# Functions are defines in fn_functions. functionfile="${FUNCNAME}" fn_runfunction } fn_runfunction(){ -# Download function if missing +# Functions are downloaded and run with this function if [ ! -f "${rootdir}/functions/${functionfile}" ]; then cd "${rootdir}" if [ ! -d "functions" ]; then mkdir functions fi - echo "loading ${functionfile}..." cd functions - wget --no-check-certificate -nv -N https://raw.githubusercontent.com/dgibbs64/linuxgameservers/master/functions/${functionfile} + echo -e "loading ${functionfile}...\c" + wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgameservers/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45- chmod +x "${functionfile}" cd "${rootdir}" sleep 1 - echo "" fi -# Run function source "${rootdir}/functions/${functionfile}" } -# -## Installer -# - -fn_glibcfix(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_header(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_steamdl(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_steaminstall(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_steamfix(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_loginstall(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_getquery(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_retryinstall(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_serverdirectory(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_serverconfig(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_install(){ -fn_rootcheck -fn_header -if [ -z "${autoinstall}" ]; then - fn_serverdirectory - fn_header -fi -fn_steamdl -fn_steaminstall -fn_steamfix -fn_glibcfix -fn_loginstall -fn_getquery -fn_serverconfig -fn_header -fn_details -echo "=================================" -echo "Install Complete!" -echo "" -echo "To start server type:" -echo "${selfname} start" -echo "" -} - -fn_autoinstall(){ -autoinstall=1 -fn_install -} +fn_functions case "$1" in start) @@ -333,11 +125,10 @@ case "$1" in restart) fn_restartserver;; update) - fn_updateserver;; + norestart=1; + fn_versioncheck;; update-restart) - fn_stopserver - fn_updateserver - fn_startserver;; + fn_versioncheck;; validate) fn_validateserver;; validate-restart) diff --git a/GarrysMod/gmodserver b/GarrysMod/gmodserver index 5cdb5125b..1c27fd5b6 100644 --- a/GarrysMod/gmodserver +++ b/GarrysMod/gmodserver @@ -3,7 +3,7 @@ # Server Management Script # Author: Daniel Gibbs # Website: http://danielgibbs.co.uk -# Version: 011214 +# Version: 010115 #### Variables #### @@ -45,7 +45,7 @@ gamename="Garrys's Mod" engine="source" # Directories -rootdir="$(cd "$(dirname "${BASH_SOURCE[0]}" )" && pwd )" +rootdir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" selfname="$0" lockselfname=$(echo ".${servicename}.lock") filesdir="${rootdir}/serverfiles" @@ -77,258 +77,50 @@ consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%d-%m-%Y-%H-%M- ##### Script ##### # Do not edit -# unless you know -# what you are doing -fn_scriptlog(){ - echo -e "$(date '+%b %d %H:%M:%S') ${servicename}: ${1}" >> "${scriptlog}" -} - -# [ FAIL ] -fn_printfail(){ - echo -en "\r\033[K[\e[0;31m FAIL \e[0;39m] $@" -} - -fn_printfailnl(){ - echo -e "\r\033[K[\e[0;31m FAIL \e[0;39m] $@" -} - -# [ OK ] -fn_printok(){ - echo -en "\r\033[K[\e[0;32m OK \e[0;39m] $@" -} - -fn_printoknl(){ - echo -e "\r\033[K[\e[0;32m OK \e[0;39m] $@" -} - -# [ INFO ] -fn_printinfo(){ - echo -en "\r\033[K[\e[0;36m INFO \e[0;39m] $@" -} - -fn_printinfonl(){ - echo -e "\r\033[K[\e[0;36m INFO \e[0;39m] $@" -} - -# [ WARN ] -fn_printwarn(){ - echo -en "\r\033[K[\e[1;33m WARN \e[0;39m] $@" -} - -fn_printwarnnl(){ - echo -e "\r\033[K[\e[1;33m WARN \e[0;39m] $@" -} - -# [ .... ] -fn_printdots(){ - echo -en "\r\033[K[ .... ] $@" -} - -fn_rootcheck(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_syscheck(){ -if [ ! -e "${systemdir}" ]; then - fn_printfailnl "Cannot access ${systemdir}: No such directory" - exit +fn_install(){ +fn_rootcheck +fn_header +if [ -z "${autoinstall}" ]; then + fn_serverdirectory + fn_header fi +fn_steamdl +fn_steaminstall +fn_steamfix +fn_glibcfix +fn_loginstall +fn_getquery +fn_serverconfig +fn_header +fn_details +fn_installcomplete } -fn_autoip(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_logmanager(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_debugserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_console(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_backupserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_distro(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_uptime(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_load(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_emailnotification(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_emailtest(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_serverquery(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_monitorserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_updateserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_validateserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_restartserver(){ -fn_scriptlog "Restarting ${servername}" -fn_stopserver -fn_startserver -} - -fn_stopserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_startserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_details(){ +fn_functions(){ +# Functions are defines in fn_functions. functionfile="${FUNCNAME}" fn_runfunction } fn_runfunction(){ -# Download function if missing +# Functions are downloaded and run with this function if [ ! -f "${rootdir}/functions/${functionfile}" ]; then cd "${rootdir}" if [ ! -d "functions" ]; then mkdir functions fi - echo "loading ${functionfile}..." cd functions - wget --no-check-certificate -nv -N https://raw.githubusercontent.com/dgibbs64/linuxgameservers/master/functions/${functionfile} + echo -e "loading ${functionfile}...\c" + wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgameservers/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45- chmod +x "${functionfile}" cd "${rootdir}" sleep 1 - echo "" fi -# Run function source "${rootdir}/functions/${functionfile}" } -# -## Installer -# - -fn_glibcfix(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_header(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_steamdl(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_steaminstall(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_steamfix(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_loginstall(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_getquery(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_retryinstall(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_serverdirectory(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_serverconfig(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_install(){ -fn_rootcheck -fn_header -if [ -z "${autoinstall}" ]; then - fn_serverdirectory - fn_header -fi -fn_steamdl -fn_steaminstall -fn_steamfix -fn_glibcfix -fn_loginstall -fn_getquery -fn_serverconfig -fn_header -fn_details -echo "=================================" -echo "Install Complete!" -echo "" -echo "To start server type:" -echo "${selfname} start" -echo "" -} - -fn_autoinstall(){ -autoinstall=1 -fn_install -} +fn_functions case "$1" in start) @@ -338,11 +130,10 @@ case "$1" in restart) fn_restartserver;; update) - fn_updateserver;; + norestart=1; + fn_versioncheck;; update-restart) - fn_stopserver - fn_updateserver - fn_startserver;; + fn_versioncheck;; validate) fn_validateserver;; validate-restart) diff --git a/HalfLife2Deathmatch/hl2dmserver b/HalfLife2Deathmatch/hl2dmserver index 4c6535bed..f7a45e997 100644 --- a/HalfLife2Deathmatch/hl2dmserver +++ b/HalfLife2Deathmatch/hl2dmserver @@ -3,7 +3,7 @@ # Server Management Script # Author: Daniel Gibbs # Website: http://danielgibbs.co.uk -# Version: 011214 +# Version: 010115 #### Variables #### @@ -40,7 +40,7 @@ gamename="Half Life 2: Deathmatch" engine="source" # Directories -rootdir="$(cd "$(dirname "${BASH_SOURCE[0]}" )" && pwd )" +rootdir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" selfname="$0" lockselfname=$(echo ".${servicename}.lock") filesdir="${rootdir}/serverfiles" @@ -72,252 +72,49 @@ consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%d-%m-%Y-%H-%M- ##### Script ##### # Do not edit -# unless you know -# what you are doing -fn_scriptlog(){ - echo -e "$(date '+%b %d %H:%M:%S') ${servicename}: ${1}" >> "${scriptlog}" -} - -# [ FAIL ] -fn_printfail(){ - echo -en "\r\033[K[\e[0;31m FAIL \e[0;39m] $@" -} - -fn_printfailnl(){ - echo -e "\r\033[K[\e[0;31m FAIL \e[0;39m] $@" -} - -# [ OK ] -fn_printok(){ - echo -en "\r\033[K[\e[0;32m OK \e[0;39m] $@" -} - -fn_printoknl(){ - echo -e "\r\033[K[\e[0;32m OK \e[0;39m] $@" -} - -# [ INFO ] -fn_printinfo(){ - echo -en "\r\033[K[\e[0;36m INFO \e[0;39m] $@" -} - -fn_printinfonl(){ - echo -e "\r\033[K[\e[0;36m INFO \e[0;39m] $@" -} - -# [ WARN ] -fn_printwarn(){ - echo -en "\r\033[K[\e[1;33m WARN \e[0;39m] $@" -} - -fn_printwarnnl(){ - echo -e "\r\033[K[\e[1;33m WARN \e[0;39m] $@" -} - -# [ .... ] -fn_printdots(){ - echo -en "\r\033[K[ .... ] $@" -} - -fn_rootcheck(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_syscheck(){ -if [ ! -e "${systemdir}" ]; then - fn_printfailnl "Cannot access ${systemdir}: No such directory" - exit +fn_install(){ +fn_rootcheck +fn_header +if [ -z "${autoinstall}" ]; then + fn_serverdirectory + fn_header fi +fn_steamdl +fn_steaminstall +fn_steamfix +fn_loginstall +fn_getquery +fn_serverconfig +fn_header +fn_details +fn_installcomplete } -fn_autoip(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_logmanager(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_debugserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_console(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_backupserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_distro(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_uptime(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_load(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_emailnotification(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_emailtest(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_serverquery(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_monitorserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_updateserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_validateserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_restartserver(){ -fn_scriptlog "Restarting ${servername}" -fn_stopserver -fn_startserver -} - -fn_stopserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_startserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_details(){ +fn_functions(){ +# Functions are defines in fn_functions. functionfile="${FUNCNAME}" fn_runfunction } fn_runfunction(){ -# Download function if missing +# Functions are downloaded and run with this function if [ ! -f "${rootdir}/functions/${functionfile}" ]; then cd "${rootdir}" if [ ! -d "functions" ]; then mkdir functions fi - echo "loading ${functionfile}..." cd functions - wget --no-check-certificate -nv -N https://raw.githubusercontent.com/dgibbs64/linuxgameservers/master/functions/${functionfile} + echo -e "loading ${functionfile}...\c" + wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgameservers/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45- chmod +x "${functionfile}" cd "${rootdir}" sleep 1 - echo "" fi -# Run function source "${rootdir}/functions/${functionfile}" } -# -## Installer -# - -fn_header(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_steamdl(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_steaminstall(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_steamfix(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_loginstall(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_getquery(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_retryinstall(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_serverdirectory(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_serverconfig(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_install(){ -fn_rootcheck -fn_header -if [ -z "${autoinstall}" ]; then - fn_serverdirectory - fn_header -fi -fn_steamdl -fn_steaminstall -fn_steamfix -fn_loginstall -fn_getquery -fn_serverconfig -fn_header -fn_details -echo "=================================" -echo "Install Complete!" -echo "" -echo "To start server type:" -echo "${selfname} start" -echo "" -} - -fn_autoinstall(){ -autoinstall=1 -fn_install -} +fn_functions case "$1" in start) @@ -327,11 +124,10 @@ case "$1" in restart) fn_restartserver;; update) - fn_updateserver;; + norestart=1; + fn_versioncheck;; update-restart) - fn_stopserver - fn_updateserver - fn_startserver;; + fn_versioncheck;; validate) fn_validateserver;; validate-restart) diff --git a/HalfLifeDeathmatchClassic/hldmcserver b/HalfLifeDeathmatchClassic/hldmcserver index 6bcb7d311..f6cd80a21 100644 --- a/HalfLifeDeathmatchClassic/hldmcserver +++ b/HalfLifeDeathmatchClassic/hldmcserver @@ -3,7 +3,7 @@ # Server Management Script # Author: Daniel Gibbs # Website: http://danielgibbs.co.uk -# Version: 011214 +# Version: 010115 #### Variables #### @@ -39,7 +39,7 @@ gamename="Half Life: Deathmatch Classic" engine="goldsource" # Directories -rootdir="$(cd "$(dirname "${BASH_SOURCE[0]}" )" && pwd )" +rootdir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" selfname="$0" lockselfname=$(echo ".${servicename}.lock") filesdir="${rootdir}/serverfiles" @@ -71,252 +71,49 @@ consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%d-%m-%Y-%H-%M- ##### Script ##### # Do not edit -# unless you know -# what you are doing -fn_scriptlog(){ - echo -e "$(date '+%b %d %H:%M:%S') ${servicename}: ${1}" >> "${scriptlog}" -} - -# [ FAIL ] -fn_printfail(){ - echo -en "\r\033[K[\e[0;31m FAIL \e[0;39m] $@" -} - -fn_printfailnl(){ - echo -e "\r\033[K[\e[0;31m FAIL \e[0;39m] $@" -} - -# [ OK ] -fn_printok(){ - echo -en "\r\033[K[\e[0;32m OK \e[0;39m] $@" -} - -fn_printoknl(){ - echo -e "\r\033[K[\e[0;32m OK \e[0;39m] $@" -} - -# [ INFO ] -fn_printinfo(){ - echo -en "\r\033[K[\e[0;36m INFO \e[0;39m] $@" -} - -fn_printinfonl(){ - echo -e "\r\033[K[\e[0;36m INFO \e[0;39m] $@" -} - -# [ WARN ] -fn_printwarn(){ - echo -en "\r\033[K[\e[1;33m WARN \e[0;39m] $@" -} - -fn_printwarnnl(){ - echo -e "\r\033[K[\e[1;33m WARN \e[0;39m] $@" -} - -# [ .... ] -fn_printdots(){ - echo -en "\r\033[K[ .... ] $@" -} - -fn_rootcheck(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_syscheck(){ -if [ ! -e "${systemdir}" ]; then - fn_printfailnl "Cannot access ${systemdir}: No such directory" - exit +fn_install(){ +fn_rootcheck +fn_header +if [ -z "${autoinstall}" ]; then + fn_serverdirectory + fn_header fi +fn_steamdl +fn_steaminstall +fn_steamfix +fn_loginstall +fn_getquery +fn_serverconfig +fn_header +fn_details +fn_installcomplete } -fn_autoip(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_logmanager(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_debugserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_console(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_backupserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_distro(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_uptime(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_load(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_emailnotification(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_emailtest(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_serverquery(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_monitorserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_updateserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_validateserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_restartserver(){ -fn_scriptlog "Restarting ${servername}" -fn_stopserver -fn_startserver -} - -fn_stopserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_startserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_details(){ +fn_functions(){ +# Functions are defines in fn_functions. functionfile="${FUNCNAME}" fn_runfunction } fn_runfunction(){ -# Download function if missing +# Functions are downloaded and run with this function if [ ! -f "${rootdir}/functions/${functionfile}" ]; then cd "${rootdir}" if [ ! -d "functions" ]; then mkdir functions fi - echo "loading ${functionfile}..." cd functions - wget --no-check-certificate -nv -N https://raw.githubusercontent.com/dgibbs64/linuxgameservers/master/functions/${functionfile} + echo -e "loading ${functionfile}...\c" + wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgameservers/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45- chmod +x "${functionfile}" cd "${rootdir}" sleep 1 - echo "" fi -# Run function source "${rootdir}/functions/${functionfile}" } -# -## Installer -# - -fn_header(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_steamdl(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_steaminstall(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_steamfix(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_loginstall(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_getquery(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_retryinstall(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_serverdirectory(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_serverconfig(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_install(){ -fn_rootcheck -fn_header -if [ -z "${autoinstall}" ]; then - fn_serverdirectory - fn_header -fi -fn_steamdl -fn_steaminstall -fn_steamfix -fn_loginstall -fn_getquery -fn_serverconfig -fn_header -fn_details -echo "=================================" -echo "Install Complete!" -echo "" -echo "To start server type:" -echo "${selfname} start" -echo "" -} - -fn_autoinstall(){ -autoinstall=1 -fn_install -} +fn_functions case "$1" in start) @@ -326,11 +123,10 @@ case "$1" in restart) fn_restartserver;; update) - fn_updateserver;; + norestart=1; + fn_versioncheck;; update-restart) - fn_stopserver - fn_updateserver - fn_startserver;; + fn_versioncheck;; validate) fn_validateserver;; validate-restart) diff --git a/Insurgency/insserver b/Insurgency/insserver index 2cc17bbc9..985bfb30a 100644 --- a/Insurgency/insserver +++ b/Insurgency/insserver @@ -3,7 +3,7 @@ # Server Management Script # Author: Daniel Gibbs # Website: http://danielgibbs.co.uk -# Version: 011214 +# Version: 010115 #### Variables #### @@ -40,7 +40,7 @@ gamename="Insurgency" engine="source" # Directories -rootdir="$(cd "$(dirname "${BASH_SOURCE[0]}" )" && pwd )" +rootdir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" selfname="$0" lockselfname=$(echo ".${servicename}.lock") filesdir="${rootdir}/serverfiles" @@ -72,258 +72,50 @@ consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%d-%m-%Y-%H-%M- ##### Script ##### # Do not edit -# unless you know -# what you are doing -fn_scriptlog(){ - echo -e "$(date '+%b %d %H:%M:%S') ${servicename}: ${1}" >> "${scriptlog}" -} - -# [ FAIL ] -fn_printfail(){ - echo -en "\r\033[K[\e[0;31m FAIL \e[0;39m] $@" -} - -fn_printfailnl(){ - echo -e "\r\033[K[\e[0;31m FAIL \e[0;39m] $@" -} - -# [ OK ] -fn_printok(){ - echo -en "\r\033[K[\e[0;32m OK \e[0;39m] $@" -} - -fn_printoknl(){ - echo -e "\r\033[K[\e[0;32m OK \e[0;39m] $@" -} - -# [ INFO ] -fn_printinfo(){ - echo -en "\r\033[K[\e[0;36m INFO \e[0;39m] $@" -} - -fn_printinfonl(){ - echo -e "\r\033[K[\e[0;36m INFO \e[0;39m] $@" -} - -# [ WARN ] -fn_printwarn(){ - echo -en "\r\033[K[\e[1;33m WARN \e[0;39m] $@" -} - -fn_printwarnnl(){ - echo -e "\r\033[K[\e[1;33m WARN \e[0;39m] $@" -} - -# [ .... ] -fn_printdots(){ - echo -en "\r\033[K[ .... ] $@" -} - -fn_rootcheck(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_syscheck(){ -if [ ! -e "${systemdir}" ]; then - fn_printfailnl "Cannot access ${systemdir}: No such directory" - exit +fn_install(){ +fn_rootcheck +fn_header +if [ -z "${autoinstall}" ]; then + fn_serverdirectory + fn_header fi +fn_steamdl +fn_steaminstall +fn_steamfix +fn_glibcfix +fn_loginstall +fn_getquery +fn_serverconfig +fn_header +fn_details +fn_installcomplete } -fn_autoip(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_logmanager(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_debugserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_console(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_backupserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_distro(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_uptime(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_load(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_emailnotification(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_emailtest(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_serverquery(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_monitorserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_updateserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_validateserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_restartserver(){ -fn_scriptlog "Restarting ${servername}" -fn_stopserver -fn_startserver -} - -fn_stopserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_startserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_details(){ +fn_functions(){ +# Functions are defines in fn_functions. functionfile="${FUNCNAME}" fn_runfunction } fn_runfunction(){ -# Download function if missing +# Functions are downloaded and run with this function if [ ! -f "${rootdir}/functions/${functionfile}" ]; then cd "${rootdir}" if [ ! -d "functions" ]; then mkdir functions fi - echo "loading ${functionfile}..." cd functions - wget --no-check-certificate -nv -N https://raw.githubusercontent.com/dgibbs64/linuxgameservers/master/functions/${functionfile} + echo -e "loading ${functionfile}...\c" + wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgameservers/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45- chmod +x "${functionfile}" cd "${rootdir}" sleep 1 - echo "" fi -# Run function source "${rootdir}/functions/${functionfile}" } -# -## Installer -# - -fn_header(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_steamdl(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_steaminstall(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_steamfix(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_glibcfix(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_loginstall(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_getquery(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_retryinstall(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_serverdirectory(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_serverconfig(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_install(){ -fn_rootcheck -fn_header -if [ -z "${autoinstall}" ]; then - fn_serverdirectory - fn_header -fi -fn_steamdl -fn_steaminstall -fn_steamfix -fn_glibcfix -fn_loginstall -fn_getquery -fn_serverconfig -fn_header -fn_details -echo "=================================" -echo "Install Complete!" -echo "" -echo "To start server type:" -echo "${selfname} start" -echo "" -} - -fn_autoinstall(){ -autoinstall=1 -fn_install -} +fn_functions case "$1" in start) @@ -333,11 +125,10 @@ case "$1" in restart) fn_restartserver;; update) - fn_updateserver;; + norestart=1; + fn_versioncheck;; update-restart) - fn_stopserver - fn_updateserver - fn_startserver;; + fn_versioncheck;; validate) fn_validateserver;; validate-restart) diff --git a/JustCause2/jc2server b/JustCause2/jc2server index 4f3e97736..e156571d4 100644 --- a/JustCause2/jc2server +++ b/JustCause2/jc2server @@ -3,7 +3,7 @@ # Server Management Script # Author: Daniel Gibbs # Website: http://danielgibbs.co.uk -# Version: 011214 +# Version: 010115 #### Variables #### @@ -36,7 +36,7 @@ gamename="Just Cause 2" engine="avalanche" # Directories -rootdir="$(cd "$(dirname "${BASH_SOURCE[0]}" )" && pwd )" +rootdir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" selfname="$0" lockselfname=$(echo ".${servicename}.lock") filesdir="${rootdir}/serverfiles" @@ -66,252 +66,49 @@ consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%d-%m-%Y-%H-%M- ##### Script ##### # Do not edit -# unless you know -# what you are doing -fn_scriptlog(){ - echo -e "$(date '+%b %d %H:%M:%S') ${servicename}: ${1}" >> "${scriptlog}" -} - -# [ FAIL ] -fn_printfail(){ - echo -en "\r\033[K[\e[0;31m FAIL \e[0;39m] $@" -} - -fn_printfailnl(){ - echo -e "\r\033[K[\e[0;31m FAIL \e[0;39m] $@" -} - -# [ OK ] -fn_printok(){ - echo -en "\r\033[K[\e[0;32m OK \e[0;39m] $@" -} - -fn_printoknl(){ - echo -e "\r\033[K[\e[0;32m OK \e[0;39m] $@" -} - -# [ INFO ] -fn_printinfo(){ - echo -en "\r\033[K[\e[0;36m INFO \e[0;39m] $@" -} - -fn_printinfonl(){ - echo -e "\r\033[K[\e[0;36m INFO \e[0;39m] $@" -} - -# [ WARN ] -fn_printwarn(){ - echo -en "\r\033[K[\e[1;33m WARN \e[0;39m] $@" -} - -fn_printwarnnl(){ - echo -e "\r\033[K[\e[1;33m WARN \e[0;39m] $@" -} - -# [ .... ] -fn_printdots(){ - echo -en "\r\033[K[ .... ] $@" -} - -fn_rootcheck(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_syscheck(){ -if [ ! -e "${systemdir}" ]; then - fn_printfailnl "Cannot access ${systemdir}: No such directory" - exit +fn_install(){ +fn_rootcheck +fn_header +if [ -z "${autoinstall}" ]; then + fn_serverdirectory + fn_header fi +fn_steamdl +fn_steaminstall +fn_glibcfix +fn_loginstall +fn_getquery +fn_serverconfig +fn_header +fn_details +fn_installcomplete } -fn_autoip(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_logmanager(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_debugserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_console(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_backupserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_distro(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_uptime(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_load(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_emailnotification(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_emailtest(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_serverquery(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_monitorserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_updateserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_validateserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_restartserver(){ -fn_scriptlog "Restarting ${servername}" -fn_stopserver -fn_startserver -} - -fn_stopserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_startserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_details(){ +fn_functions(){ +# Functions are defines in fn_functions. functionfile="${FUNCNAME}" fn_runfunction } fn_runfunction(){ -# Download function if missing +# Functions are downloaded and run with this function if [ ! -f "${rootdir}/functions/${functionfile}" ]; then cd "${rootdir}" if [ ! -d "functions" ]; then mkdir functions fi - echo "loading ${functionfile}..." cd functions - wget --no-check-certificate -nv -N https://raw.githubusercontent.com/dgibbs64/linuxgameservers/master/functions/${functionfile} + echo -e "loading ${functionfile}...\c" + wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgameservers/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45- chmod +x "${functionfile}" cd "${rootdir}" sleep 1 - echo "" fi -# Run function source "${rootdir}/functions/${functionfile}" } -# -## Installer -# - -fn_header(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_steamdl(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_steaminstall(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_glibcfix(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_loginstall(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_getquery(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_retryinstall(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_serverdirectory(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_serverconfig(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_install(){ -fn_rootcheck -fn_header -if [ -z "${autoinstall}" ]; then - fn_serverdirectory - fn_header -fi -fn_steamdl -fn_steaminstall -fn_glibcfix -fn_loginstall -fn_getquery -fn_serverconfig -fn_header -fn_details -echo "=================================" -echo "Install Complete!" -echo "" -echo "To start server type:" -echo "${selfname} start" -echo "" -} - -fn_autoinstall(){ -autoinstall=1 -fn_install -} +fn_functions case "$1" in start) @@ -321,11 +118,10 @@ case "$1" in restart) fn_restartserver;; update) - fn_updateserver;; + norestart=1; + fn_versioncheck;; update-restart) - fn_stopserver - fn_updateserver - fn_startserver;; + fn_versioncheck;; validate) fn_validateserver;; validate-restart) diff --git a/KillingFloor/kfserver b/KillingFloor/kfserver index bba182020..e6b0c31e7 100644 --- a/KillingFloor/kfserver +++ b/KillingFloor/kfserver @@ -3,7 +3,7 @@ # Server Management Script # Author: Daniel Gibbs # Website: http://danielgibbs.co.uk -# Version: 011214 +# Version: 010115 #### Variables #### @@ -16,11 +16,23 @@ email="email@example.com" steamuser="username" steampass="password" +# Start Variables +fn_parms(){ +defaultmap="KF-BioticsLab.rom" +parms="server ${defaultmap}?game=KFmod.KFGameType?VACSecured=true -nohomedir ini=${ini} log=${gamelog}" + +# Start Variables for Objective mode +#defaultmap="KFO-Steamland" +#parms="server ${defaultmap}?Game=KFStoryGame.KFStoryGame?VACSecured=true -nohomedir ini=${ini} log=${gamelog}" +} + +#### Advanced Variables #### + # Steam appid="215360" # Directories -rootdir="$(cd "$(dirname "${BASH_SOURCE[0]}" )" && pwd )" +rootdir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" selfname="$0" lockselfname=$(echo ".${servicename}.lock") filesdir="${rootdir}/serverfiles" @@ -54,275 +66,52 @@ gamelogdate="${gamelogdir}/${servicename}-game-$(date '+%d-%m-%Y-%H-%M-%S').log" scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%d-%m-%Y-%H-%M-%S').log" consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%d-%m-%Y-%H-%M-%S').log" -# Start Variables -fn_parms(){ -defaultmap="KF-BioticsLab.rom" -parms="server ${defaultmap}?game=KFmod.KFGameType?VACSecured=true -nohomedir ini=${ini} log=${gamelog}" - -# Start Variables for Objective mode -#defaultmap="KFO-Steamland" -#parms="server ${defaultmap}?Game=KFStoryGame.KFStoryGame?VACSecured=true -nohomedir ini=${ini} log=${gamelog}" -} - ##### Script ##### # Do not edit -# unless you know -# what you are doing - -fn_scriptlog(){ - echo -e "$(date '+%b %d %H:%M:%S') ${servicename}: ${1}" >> "${scriptlog}" -} - -# [ FAIL ] -fn_printfail(){ - echo -en "\r\033[K[\e[0;31m FAIL \e[0;39m] $@" -} - -fn_printfailnl(){ - echo -e "\r\033[K[\e[0;31m FAIL \e[0;39m] $@" -} - -# [ OK ] -fn_printok(){ - echo -en "\r\033[K[\e[0;32m OK \e[0;39m] $@" -} - -fn_printoknl(){ - echo -e "\r\033[K[\e[0;32m OK \e[0;39m] $@" -} - -# [ INFO ] -fn_printinfo(){ - echo -en "\r\033[K[\e[0;36m INFO \e[0;39m] $@" -} - -fn_printinfonl(){ - echo -e "\r\033[K[\e[0;36m INFO \e[0;39m] $@" -} - -# [ WARN ] -fn_printwarn(){ - echo -en "\r\033[K[\e[1;33m WARN \e[0;39m] $@" -} - -fn_printwarnnl(){ - echo -e "\r\033[K[\e[1;33m WARN \e[0;39m] $@" -} - -# [ .... ] -fn_printdots(){ - echo -en "\r\033[K[ .... ] $@" -} - -fn_rootcheck(){ -functionfile="${FUNCNAME}" -fn_runfunction -} -fn_syscheck(){ -if [ ! -e "${systemdir}" ]; then - fn_printfailnl "Cannot access ${systemdir}: No such directory" - exit +fn_install(){ +fn_rootcheck +fn_header +if [ -z "${autoinstall}" ]; then + fn_serverdirectory + fn_header fi +fn_steamdl +fn_steaminstall +fn_steamfix +fn_loginstall +fn_getquery +fn_serverconfig +fn_kffix +fn_header +fn_details +fn_installcomplete } -fn_autoip(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_logmanager(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_debugserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_console(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_backupserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_distro(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_uptime(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_load(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_emailnotification(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_emailtest(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_serverquery(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_monitorserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_updateserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_validateserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_restartserver(){ -fn_scriptlog "Restarting ${servername}" -fn_stopserver -fn_startserver -} - -fn_stopserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_startserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_details(){ +fn_functions(){ +# Functions are defines in fn_functions. functionfile="${FUNCNAME}" fn_runfunction } fn_runfunction(){ -# Download function if missing +# Functions are downloaded and run with this function if [ ! -f "${rootdir}/functions/${functionfile}" ]; then cd "${rootdir}" if [ ! -d "functions" ]; then mkdir functions fi - echo "loading ${functionfile}..." cd functions - wget --no-check-certificate -nv -N https://raw.githubusercontent.com/dgibbs64/linuxgameservers/master/functions/${functionfile} + echo -e "loading ${functionfile}...\c" + wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgameservers/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45- chmod +x "${functionfile}" cd "${rootdir}" sleep 1 - echo "" fi -# Run function source "${rootdir}/functions/${functionfile}" } -fn_unreal2compressmaps(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -# -## Installer -# - -fn_kffix(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_header(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_steamdl(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_steaminstall(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_steamfix(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_loginstall(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_getquery(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_retryinstall(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_serverdirectory(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_serverconfig(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_install(){ -fn_rootcheck -fn_header -if [ -z "${autoinstall}" ]; then - fn_serverdirectory - fn_header -fi -fn_steamdl -fn_steaminstall -fn_steamfix -fn_loginstall -fn_getquery -fn_serverconfig -fn_kffix -fn_header -fn_details -echo "=================================" -echo "Install Complete!" -echo "" -echo "To start server type:" -echo "${selfname} start" -echo "" -} - -fn_autoinstall(){ -autoinstall=1 -fn_install -} +fn_functions case "$1" in start) @@ -332,11 +121,10 @@ case "$1" in restart) fn_restartserver;; update) - fn_updateserver;; + norestart=1; + fn_versioncheck;; update-restart) - fn_stopserver - fn_updateserver - fn_startserver;; + fn_versioncheck;; validate) fn_validateserver;; validate-restart) diff --git a/Left4Dead/l4dserver b/Left4Dead/l4dserver index 3a3a7566d..f04fe695d 100644 --- a/Left4Dead/l4dserver +++ b/Left4Dead/l4dserver @@ -4,7 +4,7 @@ # Author: Daniel Gibbs # Contributor: Summit Singh Thakur # Website: http://danielgibbs.co.uk -# Version: 011214 +# Version: 010115 #### Variables #### @@ -40,7 +40,7 @@ gamename="Left 4 Dead" engine="source" # Directories -rootdir="$(cd "$(dirname "${BASH_SOURCE[0]}" )" && pwd )" +rootdir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" selfname="$0" lockselfname=$(echo ".${servicename}.lock") filesdir="${rootdir}/serverfiles" @@ -72,252 +72,49 @@ consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%d-%m-%Y-%H-%M- ##### Script ##### # Do not edit -# unless you know -# what you are doing -fn_scriptlog(){ - echo -e "$(date '+%b %d %H:%M:%S') ${servicename}: ${1}" >> "${scriptlog}" -} - -# [ FAIL ] -fn_printfail(){ - echo -en "\r\033[K[\e[0;31m FAIL \e[0;39m] $@" -} - -fn_printfailnl(){ - echo -e "\r\033[K[\e[0;31m FAIL \e[0;39m] $@" -} - -# [ OK ] -fn_printok(){ - echo -en "\r\033[K[\e[0;32m OK \e[0;39m] $@" -} - -fn_printoknl(){ - echo -e "\r\033[K[\e[0;32m OK \e[0;39m] $@" -} - -# [ INFO ] -fn_printinfo(){ - echo -en "\r\033[K[\e[0;36m INFO \e[0;39m] $@" -} - -fn_printinfonl(){ - echo -e "\r\033[K[\e[0;36m INFO \e[0;39m] $@" -} - -# [ WARN ] -fn_printwarn(){ - echo -en "\r\033[K[\e[1;33m WARN \e[0;39m] $@" -} - -fn_printwarnnl(){ - echo -e "\r\033[K[\e[1;33m WARN \e[0;39m] $@" -} - -# [ .... ] -fn_printdots(){ - echo -en "\r\033[K[ .... ] $@" -} - -fn_rootcheck(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_syscheck(){ -if [ ! -e "${systemdir}" ]; then - fn_printfailnl "Cannot access ${systemdir}: No such directory" - exit +fn_install(){ +fn_rootcheck +fn_header +if [ -z "${autoinstall}" ]; then + fn_serverdirectory + fn_header fi +fn_steamdl +fn_steaminstall +fn_steamfix +fn_loginstall +fn_getquery +fn_serverconfig +fn_header +fn_details +fn_installcomplete } -fn_autoip(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_logmanager(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_debugserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_console(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_backupserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_distro(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_uptime(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_load(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_emailnotification(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_emailtest(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_serverquery(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_monitorserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_updateserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_validateserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_restartserver(){ -fn_scriptlog "Restarting ${servername}" -fn_stopserver -fn_startserver -} - -fn_stopserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_startserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_details(){ +fn_functions(){ +# Functions are defines in fn_functions. functionfile="${FUNCNAME}" fn_runfunction } fn_runfunction(){ -# Download function if missing +# Functions are downloaded and run with this function if [ ! -f "${rootdir}/functions/${functionfile}" ]; then cd "${rootdir}" if [ ! -d "functions" ]; then mkdir functions fi - echo "loading ${functionfile}..." cd functions - wget --no-check-certificate -nv -N https://raw.githubusercontent.com/dgibbs64/linuxgameservers/master/functions/${functionfile} + echo -e "loading ${functionfile}...\c" + wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgameservers/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45- chmod +x "${functionfile}" cd "${rootdir}" sleep 1 - echo "" fi -# Run function source "${rootdir}/functions/${functionfile}" } -# -## Installer -# - -fn_header(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_steamdl(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_steaminstall(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_steamfix(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_loginstall(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_getquery(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_retryinstall(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_serverdirectory(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_serverconfig(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_install(){ -fn_rootcheck -fn_header -if [ -z "${autoinstall}" ]; then - fn_serverdirectory - fn_header -fi -fn_steamdl -fn_steaminstall -fn_steamfix -fn_loginstall -fn_getquery -fn_serverconfig -fn_header -fn_details -echo "=================================" -echo "Install Complete!" -echo "" -echo "To start server type:" -echo "${selfname} start" -echo "" -} - -fn_autoinstall(){ -autoinstall=1 -fn_install -} +fn_functions case "$1" in start) @@ -327,11 +124,10 @@ case "$1" in restart) fn_restartserver;; update) - fn_updateserver;; + norestart=1; + fn_versioncheck;; update-restart) - fn_stopserver - fn_updateserver - fn_startserver;; + fn_versioncheck;; validate) fn_validateserver;; validate-restart) diff --git a/Left4Dead2/l4d2server b/Left4Dead2/l4d2server index 00dbb8394..27eee5a3c 100644 --- a/Left4Dead2/l4d2server +++ b/Left4Dead2/l4d2server @@ -3,7 +3,7 @@ # Server Management Script # Author: Daniel Gibbs # Website: http://danielgibbs.co.uk -# Version: 011214 +# Version: 010115 #### Variables #### @@ -39,7 +39,7 @@ gamename="Left 4 Dead 2" engine="source" # Directories -rootdir="$(cd "$(dirname "${BASH_SOURCE[0]}" )" && pwd )" +rootdir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" selfname="$0" lockselfname=$(echo ".${servicename}.lock") filesdir="${rootdir}/serverfiles" @@ -71,252 +71,49 @@ consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%d-%m-%Y-%H-%M- ##### Script ##### # Do not edit -# unless you know -# what you are doing -fn_scriptlog(){ - echo -e "$(date '+%b %d %H:%M:%S') ${servicename}: ${1}" >> "${scriptlog}" -} - -# [ FAIL ] -fn_printfail(){ - echo -en "\r\033[K[\e[0;31m FAIL \e[0;39m] $@" -} - -fn_printfailnl(){ - echo -e "\r\033[K[\e[0;31m FAIL \e[0;39m] $@" -} - -# [ OK ] -fn_printok(){ - echo -en "\r\033[K[\e[0;32m OK \e[0;39m] $@" -} - -fn_printoknl(){ - echo -e "\r\033[K[\e[0;32m OK \e[0;39m] $@" -} - -# [ INFO ] -fn_printinfo(){ - echo -en "\r\033[K[\e[0;36m INFO \e[0;39m] $@" -} - -fn_printinfonl(){ - echo -e "\r\033[K[\e[0;36m INFO \e[0;39m] $@" -} - -# [ WARN ] -fn_printwarn(){ - echo -en "\r\033[K[\e[1;33m WARN \e[0;39m] $@" -} - -fn_printwarnnl(){ - echo -e "\r\033[K[\e[1;33m WARN \e[0;39m] $@" -} - -# [ .... ] -fn_printdots(){ - echo -en "\r\033[K[ .... ] $@" -} - -fn_rootcheck(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_syscheck(){ -if [ ! -e "${systemdir}" ]; then - fn_printfailnl "Cannot access ${systemdir}: No such directory" - exit +fn_install(){ +fn_rootcheck +fn_header +if [ -z "${autoinstall}" ]; then + fn_serverdirectory + fn_header fi +fn_steamdl +fn_steaminstall +fn_steamfix +fn_loginstall +fn_getquery +fn_serverconfig +fn_header +fn_details +fn_installcomplete } -fn_autoip(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_logmanager(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_debugserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_console(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_backupserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_distro(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_uptime(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_load(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_emailnotification(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_emailtest(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_serverquery(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_monitorserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_updateserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_validateserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_restartserver(){ -fn_scriptlog "Restarting ${servername}" -fn_stopserver -fn_startserver -} - -fn_stopserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_startserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_details(){ +fn_functions(){ +# Functions are defines in fn_functions. functionfile="${FUNCNAME}" fn_runfunction } fn_runfunction(){ -# Download function if missing +# Functions are downloaded and run with this function if [ ! -f "${rootdir}/functions/${functionfile}" ]; then cd "${rootdir}" if [ ! -d "functions" ]; then mkdir functions fi - echo "loading ${functionfile}..." cd functions - wget --no-check-certificate -nv -N https://raw.githubusercontent.com/dgibbs64/linuxgameservers/master/functions/${functionfile} + echo -e "loading ${functionfile}...\c" + wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgameservers/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45- chmod +x "${functionfile}" cd "${rootdir}" sleep 1 - echo "" fi -# Run function source "${rootdir}/functions/${functionfile}" } -# -## Installer -# - -fn_header(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_steamdl(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_steaminstall(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_steamfix(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_loginstall(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_getquery(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_retryinstall(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_serverdirectory(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_serverconfig(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_install(){ -fn_rootcheck -fn_header -if [ -z "${autoinstall}" ]; then - fn_serverdirectory - fn_header -fi -fn_steamdl -fn_steaminstall -fn_steamfix -fn_loginstall -fn_getquery -fn_serverconfig -fn_header -fn_details -echo "=================================" -echo "Install Complete!" -echo "" -echo "To start server type:" -echo "${selfname} start" -echo "" -} - -fn_autoinstall(){ -autoinstall=1 -fn_install -} +fn_functions case "$1" in start) @@ -326,11 +123,10 @@ case "$1" in restart) fn_restartserver;; update) - fn_updateserver;; + norestart=1; + fn_versioncheck;; update-restart) - fn_stopserver - fn_updateserver - fn_startserver;; + fn_versioncheck;; validate) fn_validateserver;; validate-restart) diff --git a/NaturalSelection2/ns2server b/NaturalSelection2/ns2server index b35b93f28..6df27d2bc 100644 --- a/NaturalSelection2/ns2server +++ b/NaturalSelection2/ns2server @@ -3,7 +3,7 @@ # Server Management Script # Author: Daniel Gibbs # Website: http://danielgibbs.co.uk -# Version: 011214 +# Version: 010115 #### Variables #### @@ -17,7 +17,7 @@ steamuser="username" steampass="password" # Start Variables -rootdir="$(cd "$(dirname "${BASH_SOURCE[0]}" )" && pwd )" +rootdir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" defaultmap="ns2_summit" port="27015" maxplayers="24" @@ -71,252 +71,49 @@ consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%d-%m-%Y-%H-%M- ##### Script ##### # Do not edit -# unless you know -# what you are doing -fn_scriptlog(){ - echo -e "$(date '+%b %d %H:%M:%S') ${servicename}: ${1}" >> "${scriptlog}" -} - -# [ FAIL ] -fn_printfail(){ - echo -en "\r\033[K[\e[0;31m FAIL \e[0;39m] $@" -} - -fn_printfailnl(){ - echo -e "\r\033[K[\e[0;31m FAIL \e[0;39m] $@" -} - -# [ OK ] -fn_printok(){ - echo -en "\r\033[K[\e[0;32m OK \e[0;39m] $@" -} - -fn_printoknl(){ - echo -e "\r\033[K[\e[0;32m OK \e[0;39m] $@" -} - -# [ INFO ] -fn_printinfo(){ - echo -en "\r\033[K[\e[0;36m INFO \e[0;39m] $@" -} - -fn_printinfonl(){ - echo -e "\r\033[K[\e[0;36m INFO \e[0;39m] $@" -} - -# [ WARN ] -fn_printwarn(){ - echo -en "\r\033[K[\e[1;33m WARN \e[0;39m] $@" -} - -fn_printwarnnl(){ - echo -e "\r\033[K[\e[1;33m WARN \e[0;39m] $@" -} - -# [ .... ] -fn_printdots(){ - echo -en "\r\033[K[ .... ] $@" -} - -fn_rootcheck(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_syscheck(){ -if [ ! -e "${systemdir}" ]; then - fn_printfailnl "Cannot access ${systemdir}: No such directory" - exit +fn_install(){ +fn_rootcheck +fn_header +if [ -z "${autoinstall}" ]; then + fn_serverdirectory + fn_header fi +fn_steamdl +fn_steaminstall +fn_steamfix +fn_glibcfix +fn_loginstall +fn_getquery +fn_header +fn_details +fn_installcomplete } -fn_autoip(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_logmanager(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_debugserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_console(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_backupserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_distro(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_uptime(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_load(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_emailnotification(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_emailtest(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_serverquery(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_monitorserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_updateserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_validateserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_restartserver(){ -fn_scriptlog "Restarting ${servername}" -fn_stopserver -fn_startserver -} - -fn_stopserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_startserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_details(){ +fn_functions(){ +# Functions are defines in fn_functions. functionfile="${FUNCNAME}" fn_runfunction } fn_runfunction(){ -# Download function if missing +# Functions are downloaded and run with this function if [ ! -f "${rootdir}/functions/${functionfile}" ]; then cd "${rootdir}" if [ ! -d "functions" ]; then mkdir functions fi - echo "loading ${functionfile}..." cd functions - wget --no-check-certificate -nv -N https://raw.githubusercontent.com/dgibbs64/linuxgameservers/master/functions/${functionfile} + echo -e "loading ${functionfile}...\c" + wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgameservers/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45- chmod +x "${functionfile}" cd "${rootdir}" sleep 1 - echo "" fi -# Run function source "${rootdir}/functions/${functionfile}" } -# -## Installer -# - -fn_header(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_steamdl(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_steaminstall(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_steamfix(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_glibcfix(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_loginstall(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_getquery(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_retryinstall(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_serverdirectory(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_install(){ -fn_rootcheck -fn_header -if [ -z "${autoinstall}" ]; then - fn_serverdirectory - fn_header -fi -fn_steamdl -fn_steaminstall -fn_steamfix -fn_glibcfix -fn_loginstall -fn_getquery -fn_header -fn_details -echo "=================================" -echo "Install Complete!" -echo "" -echo "To start server type:" -echo "${selfname} start" -echo "" -} - -fn_autoinstall(){ -autoinstall=1 -fn_install -} +fn_functions case "$1" in start) @@ -326,11 +123,10 @@ case "$1" in restart) fn_restartserver;; update) - fn_updateserver;; + norestart=1; + fn_versioncheck;; update-restart) - fn_stopserver - fn_updateserver - fn_startserver;; + fn_versioncheck;; validate) fn_validateserver;; validate-restart) diff --git a/NoMoreRoomInHell/nmrihserver b/NoMoreRoomInHell/nmrihserver index 699d8eab2..241484777 100644 --- a/NoMoreRoomInHell/nmrihserver +++ b/NoMoreRoomInHell/nmrihserver @@ -3,7 +3,7 @@ # Server Management Script # Author: Daniel Gibbs # Website: http://danielgibbs.co.uk -# Version: 011214 +# Version: 010115 #### Variables #### @@ -40,7 +40,7 @@ gamename="No More Room in Hell" engine="source" # Directories -rootdir="$(cd "$(dirname "${BASH_SOURCE[0]}" )" && pwd )" +rootdir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" selfname="$0" lockselfname=$(echo ".${servicename}.lock") filesdir="${rootdir}/serverfiles" @@ -72,258 +72,50 @@ consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%d-%m-%Y-%H-%M- ##### Script ##### # Do not edit -# unless you know -# what you are doing -fn_scriptlog(){ - echo -e "$(date '+%b %d %H:%M:%S') ${servicename}: ${1}" >> "${scriptlog}" -} - -# [ FAIL ] -fn_printfail(){ - echo -en "\r\033[K[\e[0;31m FAIL \e[0;39m] $@" -} - -fn_printfailnl(){ - echo -e "\r\033[K[\e[0;31m FAIL \e[0;39m] $@" -} - -# [ OK ] -fn_printok(){ - echo -en "\r\033[K[\e[0;32m OK \e[0;39m] $@" -} - -fn_printoknl(){ - echo -e "\r\033[K[\e[0;32m OK \e[0;39m] $@" -} - -# [ INFO ] -fn_printinfo(){ - echo -en "\r\033[K[\e[0;36m INFO \e[0;39m] $@" -} - -fn_printinfonl(){ - echo -e "\r\033[K[\e[0;36m INFO \e[0;39m] $@" -} - -# [ WARN ] -fn_printwarn(){ - echo -en "\r\033[K[\e[1;33m WARN \e[0;39m] $@" -} - -fn_printwarnnl(){ - echo -e "\r\033[K[\e[1;33m WARN \e[0;39m] $@" -} - -# [ .... ] -fn_printdots(){ - echo -en "\r\033[K[ .... ] $@" -} - -fn_rootcheck(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_syscheck(){ -if [ ! -e "${systemdir}" ]; then - fn_printfailnl "Cannot access ${systemdir}: No such directory" - exit +fn_install(){ +fn_rootcheck +fn_header +if [ -z "${autoinstall}" ]; then + fn_serverdirectory + fn_header fi +fn_steamdl +fn_steaminstall +fn_steamfix +fn_glibcfix +fn_loginstall +fn_getquery +fn_serverconfig +fn_header +fn_details +fn_installcomplete } -fn_autoip(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_logmanager(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_debugserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_console(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_backupserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_distro(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_uptime(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_load(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_emailnotification(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_emailtest(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_serverquery(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_monitorserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_updateserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_validateserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_restartserver(){ -fn_scriptlog "Restarting ${servername}" -fn_stopserver -fn_startserver -} - -fn_stopserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_startserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_details(){ +fn_functions(){ +# Functions are defines in fn_functions. functionfile="${FUNCNAME}" fn_runfunction } fn_runfunction(){ -# Download function if missing +# Functions are downloaded and run with this function if [ ! -f "${rootdir}/functions/${functionfile}" ]; then cd "${rootdir}" if [ ! -d "functions" ]; then mkdir functions fi - echo "loading ${functionfile}..." cd functions - wget --no-check-certificate -nv -N https://raw.githubusercontent.com/dgibbs64/linuxgameservers/master/functions/${functionfile} + echo -e "loading ${functionfile}...\c" + wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgameservers/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45- chmod +x "${functionfile}" cd "${rootdir}" sleep 1 - echo "" fi -# Run function source "${rootdir}/functions/${functionfile}" } -# -## Installer -# - -fn_glibcfix(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_header(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_steamdl(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_steaminstall(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_steamfix(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_loginstall(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_getquery(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_retryinstall(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_serverdirectory(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_serverconfig(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_install(){ -fn_rootcheck -fn_header -if [ -z "${autoinstall}" ]; then - fn_serverdirectory - fn_header -fi -fn_steamdl -fn_steaminstall -fn_steamfix -fn_glibcfix -fn_loginstall -fn_getquery -fn_serverconfig -fn_header -fn_details -echo "=================================" -echo "Install Complete!" -echo "" -echo "To start server type:" -echo "${selfname} start" -echo "" -} - -fn_autoinstall(){ -autoinstall=1 -fn_install -} +fn_functions case "$1" in start) @@ -333,11 +125,10 @@ case "$1" in restart) fn_restartserver;; update) - fn_updateserver;; + norestart=1; + fn_versioncheck;; update-restart) - fn_stopserver - fn_updateserver - fn_startserver;; + fn_versioncheck;; validate) fn_validateserver;; validate-restart) diff --git a/RedOrchestra/roserver b/RedOrchestra/roserver index 9b9ce8a75..cd33553ba 100644 --- a/RedOrchestra/roserver +++ b/RedOrchestra/roserver @@ -3,7 +3,7 @@ # Server Management Script # Author: Daniel Gibbs # Website: http://danielgibbs.co.uk -# Version: 011214 +# Version: 010115 #### Variables #### @@ -20,7 +20,7 @@ steampass="password" appid="223250" # Directories -rootdir="$(cd "$(dirname "${BASH_SOURCE[0]}" )" && pwd )" +rootdir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" selfname="$0" lockselfname=$(echo ".${servicename}.lock") filesdir="${rootdir}/serverfiles" @@ -62,263 +62,50 @@ parms="server ${defaultmap}?game=ROGame.ROTeamGame?VACSecured=true -nohomedir in ##### Script ##### # Do not edit -# unless you know -# what you are doing -fn_scriptlog(){ - echo -e "$(date '+%b %d %H:%M:%S') ${servicename}: ${1}" >> "${scriptlog}" -} - -# [ FAIL ] -fn_printfail(){ - echo -en "\r\033[K[\e[0;31m FAIL \e[0;39m] $@" -} - -fn_printfailnl(){ - echo -e "\r\033[K[\e[0;31m FAIL \e[0;39m] $@" -} - -# [ OK ] -fn_printok(){ - echo -en "\r\033[K[\e[0;32m OK \e[0;39m] $@" -} - -fn_printoknl(){ - echo -e "\r\033[K[\e[0;32m OK \e[0;39m] $@" -} - -# [ INFO ] -fn_printinfo(){ - echo -en "\r\033[K[\e[0;36m INFO \e[0;39m] $@" -} - -fn_printinfonl(){ - echo -e "\r\033[K[\e[0;36m INFO \e[0;39m] $@" -} - -# [ WARN ] -fn_printwarn(){ - echo -en "\r\033[K[\e[1;33m WARN \e[0;39m] $@" -} - -fn_printwarnnl(){ - echo -e "\r\033[K[\e[1;33m WARN \e[0;39m] $@" -} - -# [ .... ] -fn_printdots(){ - echo -en "\r\033[K[ .... ] $@" -} - -fn_rootcheck(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_syscheck(){ -if [ ! -e "${systemdir}" ]; then - fn_printfailnl "Cannot access ${systemdir}: No such directory" - exit +fn_install(){ +fn_rootcheck +fn_header +if [ -z "${autoinstall}" ]; then + fn_serverdirectory + fn_header fi +fn_steamdl +fn_steaminstall +fn_steamfix +fn_loginstall +fn_getquery +fn_serverconfig +fn_rofix +fn_header +fn_details +fn_installcomplete } -fn_autoip(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_logmanager(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_debugserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_console(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_backupserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_distro(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_uptime(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_load(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_emailnotification(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_emailtest(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_serverquery(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_monitorserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_updateserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_validateserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_restartserver(){ -fn_scriptlog "Restarting ${servername}" -fn_stopserver -fn_startserver -} - -fn_stopserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_startserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_details(){ +fn_functions(){ +# Functions are defines in fn_functions. functionfile="${FUNCNAME}" fn_runfunction } fn_runfunction(){ -# Download function if missing +# Functions are downloaded and run with this function if [ ! -f "${rootdir}/functions/${functionfile}" ]; then cd "${rootdir}" if [ ! -d "functions" ]; then mkdir functions fi - echo "loading ${functionfile}..." cd functions - wget --no-check-certificate -nv -N https://raw.githubusercontent.com/dgibbs64/linuxgameservers/master/functions/${functionfile} + echo -e "loading ${functionfile}...\c" + wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgameservers/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45- chmod +x "${functionfile}" cd "${rootdir}" sleep 1 - echo "" fi -# Run function source "${rootdir}/functions/${functionfile}" } -fn_unreal2compressmaps(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -# -## Installer -# - -fn_rofix(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_header(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_steamdl(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_steaminstall(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_steamfix(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_loginstall(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_getquery(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_retryinstall(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_serverdirectory(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_serverconfig(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_install(){ -fn_rootcheck -fn_header -if [ -z "${autoinstall}" ]; then - fn_serverdirectory - fn_header -fi -fn_steamdl -fn_steaminstall -fn_steamfix -fn_loginstall -fn_getquery -fn_serverconfig -fn_rofix -fn_header -fn_details -echo "=================================" -echo "Install Complete!" -echo "" -echo "To start server type:" -echo "${selfname} start" -echo "" -} - -fn_autoinstall(){ -autoinstall=1 -fn_install -} +fn_functions case "$1" in start) @@ -328,11 +115,10 @@ case "$1" in restart) fn_restartserver;; update) - fn_updateserver;; + norestart=1; + fn_versioncheck;; update-restart) - fn_stopserver - fn_updateserver - fn_startserver;; + fn_versioncheck;; validate) fn_validateserver;; validate-restart) diff --git a/SeriousSam3BFE/ss3sserver b/SeriousSam3BFE/ss3sserver index 420fd842d..46c874fca 100644 --- a/SeriousSam3BFE/ss3sserver +++ b/SeriousSam3BFE/ss3sserver @@ -3,7 +3,7 @@ # Server Management Script # Author: Daniel Gibbs # Website: http://danielgibbs.co.uk -# Version: 161214 +# Version: 010115 #### Variables #### @@ -64,257 +64,49 @@ consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%d-%m-%Y-%H-%M- ##### Script ##### # Do not edit -# unless you know -# what you are doing -fn_scriptlog(){ - echo -e "$(date '+%b %d %H:%M:%S') ${servicename}: ${1}" >> "${scriptlog}" -} - -# [ FAIL ] -fn_printfail(){ - echo -en "\r\033[K[\e[0;31m FAIL \e[0;39m] $@" -} - -fn_printfailnl(){ - echo -e "\r\033[K[\e[0;31m FAIL \e[0;39m] $@" -} - -# [ OK ] -fn_printok(){ - echo -en "\r\033[K[\e[0;32m OK \e[0;39m] $@" -} - -fn_printoknl(){ - echo -e "\r\033[K[\e[0;32m OK \e[0;39m] $@" -} - -# [ INFO ] -fn_printinfo(){ - echo -en "\r\033[K[\e[0;36m INFO \e[0;39m] $@" -} - -fn_printinfonl(){ - echo -e "\r\033[K[\e[0;36m INFO \e[0;39m] $@" -} - -# [ WARN ] -fn_printwarn(){ - echo -en "\r\033[K[\e[1;33m WARN \e[0;39m] $@" -} - -fn_printwarnnl(){ - echo -e "\r\033[K[\e[1;33m WARN \e[0;39m] $@" -} - -# [ .... ] -fn_printdots(){ - echo -en "\r\033[K[ .... ] $@" -} - -fn_rootcheck(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_syscheck(){ -if [ ! -e "${systemdir}" ]; then - fn_printfailnl "Cannot access ${systemdir}: No such directory" - exit +fn_install(){ +fn_rootcheck +fn_header +if [ -z "${autoinstall}" ]; then + fn_serverdirectory + fn_header fi +fn_steamdl +fn_steaminstall +fn_steamfix +fn_glibcfix +fn_loginstall +fn_serverconfig +fn_header +fn_details +fn_installcomplete } -fn_autoip(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_logmanager(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_debugserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_console(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_backupserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_distro(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_uptime(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_load(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_emailnotification(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_emailtest(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_serverquery(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_monitorserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_updateserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_validateserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_restartserver(){ -fn_scriptlog "Restarting ${servername}" -fn_stopserver -fn_startserver -} - -fn_stopserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_startserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_details(){ +fn_functions(){ +# Functions are defines in fn_functions. functionfile="${FUNCNAME}" fn_runfunction } fn_runfunction(){ -# Download function if missing +# Functions are downloaded and run with this function if [ ! -f "${rootdir}/functions/${functionfile}" ]; then cd "${rootdir}" if [ ! -d "functions" ]; then mkdir functions fi - echo "loading ${functionfile}..." cd functions - wget --no-check-certificate -nv -N https://raw.githubusercontent.com/dgibbs64/linuxgameservers/master/functions/${functionfile} + echo -e "loading ${functionfile}...\c" + wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgameservers/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45- chmod +x "${functionfile}" cd "${rootdir}" sleep 1 - echo "" fi -# Run function source "${rootdir}/functions/${functionfile}" } -# -## Installer -# - -fn_glibcfix(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_header(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_steamdl(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_steaminstall(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_steamfix(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_loginstall(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_getquery(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_retryinstall(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_serverdirectory(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_serverconfig(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_install(){ -fn_rootcheck -fn_header -if [ -z "${autoinstall}" ]; then - fn_serverdirectory - fn_header -fi -fn_steamdl -fn_steaminstall -fn_steamfix -fn_glibcfix -fn_loginstall -fn_serverconfig -fn_header -fn_details -echo "=================================" -echo "Install Complete!" -echo "" -echo "To start server type:" -echo "${selfname} start" -echo "" -} - -fn_autoinstall(){ -autoinstall=1 -fn_install -} +fn_functions case "$1" in start) @@ -324,11 +116,10 @@ case "$1" in restart) fn_restartserver;; update) - fn_updateserver;; + norestart=1; + fn_versioncheck;; update-restart) - fn_stopserver - fn_updateserver - fn_startserver;; + fn_versioncheck;; validate) fn_validateserver;; validate-restart) diff --git a/TeamFortress2/tf2server b/TeamFortress2/tf2server index a1eaa139a..c93e8b2de 100644 --- a/TeamFortress2/tf2server +++ b/TeamFortress2/tf2server @@ -3,7 +3,7 @@ # Server Management Script # Author: Daniel Gibbs # Website: http://danielgibbs.co.uk -# Version: 011214 +# Version: 010115 #### Variables #### @@ -40,7 +40,7 @@ gamename="Team Fortress 2" engine="source" # Directories -rootdir="$(cd "$(dirname "${BASH_SOURCE[0]}" )" && pwd )" +rootdir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" selfname="$0" lockselfname=$(echo ".${servicename}.lock") filesdir="${rootdir}/serverfiles" @@ -72,252 +72,49 @@ consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%d-%m-%Y-%H-%M- ##### Script ##### # Do not edit -# unless you know -# what you are doing -fn_scriptlog(){ - echo -e "$(date '+%b %d %H:%M:%S') ${servicename}: ${1}" >> "${scriptlog}" -} - -# [ FAIL ] -fn_printfail(){ - echo -en "\r\033[K[\e[0;31m FAIL \e[0;39m] $@" -} - -fn_printfailnl(){ - echo -e "\r\033[K[\e[0;31m FAIL \e[0;39m] $@" -} - -# [ OK ] -fn_printok(){ - echo -en "\r\033[K[\e[0;32m OK \e[0;39m] $@" -} - -fn_printoknl(){ - echo -e "\r\033[K[\e[0;32m OK \e[0;39m] $@" -} - -# [ INFO ] -fn_printinfo(){ - echo -en "\r\033[K[\e[0;36m INFO \e[0;39m] $@" -} - -fn_printinfonl(){ - echo -e "\r\033[K[\e[0;36m INFO \e[0;39m] $@" -} - -# [ WARN ] -fn_printwarn(){ - echo -en "\r\033[K[\e[1;33m WARN \e[0;39m] $@" -} - -fn_printwarnnl(){ - echo -e "\r\033[K[\e[1;33m WARN \e[0;39m] $@" -} - -# [ .... ] -fn_printdots(){ - echo -en "\r\033[K[ .... ] $@" -} - -fn_rootcheck(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_syscheck(){ -if [ ! -e "${systemdir}" ]; then - fn_printfailnl "Cannot access ${systemdir}: No such directory" - exit +fn_install(){ +fn_rootcheck +fn_header +if [ -z "${autoinstall}" ]; then + fn_serverdirectory + fn_header fi +fn_steamdl +fn_steaminstall +fn_steamfix +fn_loginstall +fn_getquery +fn_serverconfig +fn_header +fn_details +fn_installcomplete } -fn_autoip(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_logmanager(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_debugserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_console(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_backupserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_distro(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_uptime(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_load(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_emailnotification(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_emailtest(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_serverquery(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_monitorserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_updateserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_validateserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_restartserver(){ -fn_scriptlog "Restarting ${servername}" -fn_stopserver -fn_startserver -} - -fn_stopserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_startserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_details(){ +fn_functions(){ +# Functions are defines in fn_functions. functionfile="${FUNCNAME}" fn_runfunction } fn_runfunction(){ -# Download function if missing +# Functions are downloaded and run with this function if [ ! -f "${rootdir}/functions/${functionfile}" ]; then cd "${rootdir}" if [ ! -d "functions" ]; then mkdir functions fi - echo "loading ${functionfile}..." cd functions - wget --no-check-certificate -nv -N https://raw.githubusercontent.com/dgibbs64/linuxgameservers/master/functions/${functionfile} + echo -e "loading ${functionfile}...\c" + wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgameservers/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45- chmod +x "${functionfile}" cd "${rootdir}" sleep 1 - echo "" fi -# Run function source "${rootdir}/functions/${functionfile}" } -# -## Installer -# - -fn_header(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_steamdl(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_steaminstall(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_steamfix(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_loginstall(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_getquery(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_retryinstall(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_serverdirectory(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_serverconfig(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_install(){ -fn_rootcheck -fn_header -if [ -z "${autoinstall}" ]; then - fn_serverdirectory - fn_header -fi -fn_steamdl -fn_steaminstall -fn_steamfix -fn_loginstall -fn_getquery -fn_serverconfig -fn_header -fn_details -echo "=================================" -echo "Install Complete!" -echo "" -echo "To start server type:" -echo "${selfname} start" -echo "" -} - -fn_autoinstall(){ -autoinstall=1 -fn_install -} +fn_functions case "$1" in start) @@ -327,11 +124,10 @@ case "$1" in restart) fn_restartserver;; update) - fn_updateserver;; + norestart=1; + fn_versioncheck;; update-restart) - fn_stopserver - fn_updateserver - fn_startserver;; + fn_versioncheck;; validate) fn_validateserver;; validate-restart) diff --git a/TeamFortressClassic/tfcserver b/TeamFortressClassic/tfcserver index babfd19a2..1b2912cf2 100644 --- a/TeamFortressClassic/tfcserver +++ b/TeamFortressClassic/tfcserver @@ -3,7 +3,7 @@ # Server Management Script # Author: Daniel Gibbs # Website: http://danielgibbs.co.uk -# Version: 011214 +# Version: 010115 #### Variables #### @@ -39,7 +39,7 @@ gamename="Team Fortress Classic" engine="goldsource" # Directories -rootdir="$(cd "$(dirname "${BASH_SOURCE[0]}" )" && pwd )" +rootdir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" selfname="$0" lockselfname=$(echo ".${servicename}.lock") filesdir="${rootdir}/serverfiles" @@ -71,252 +71,49 @@ consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%d-%m-%Y-%H-%M- ##### Script ##### # Do not edit -# unless you know -# what you are doing -fn_scriptlog(){ - echo -e "$(date '+%b %d %H:%M:%S') ${servicename}: ${1}" >> "${scriptlog}" -} - -# [ FAIL ] -fn_printfail(){ - echo -en "\r\033[K[\e[0;31m FAIL \e[0;39m] $@" -} - -fn_printfailnl(){ - echo -e "\r\033[K[\e[0;31m FAIL \e[0;39m] $@" -} - -# [ OK ] -fn_printok(){ - echo -en "\r\033[K[\e[0;32m OK \e[0;39m] $@" -} - -fn_printoknl(){ - echo -e "\r\033[K[\e[0;32m OK \e[0;39m] $@" -} - -# [ INFO ] -fn_printinfo(){ - echo -en "\r\033[K[\e[0;36m INFO \e[0;39m] $@" -} - -fn_printinfonl(){ - echo -e "\r\033[K[\e[0;36m INFO \e[0;39m] $@" -} - -# [ WARN ] -fn_printwarn(){ - echo -en "\r\033[K[\e[1;33m WARN \e[0;39m] $@" -} - -fn_printwarnnl(){ - echo -e "\r\033[K[\e[1;33m WARN \e[0;39m] $@" -} - -# [ .... ] -fn_printdots(){ - echo -en "\r\033[K[ .... ] $@" -} - -fn_rootcheck(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_syscheck(){ -if [ ! -e "${systemdir}" ]; then - fn_printfailnl "Cannot access ${systemdir}: No such directory" - exit +fn_install(){ +fn_rootcheck +fn_header +if [ -z "${autoinstall}" ]; then + fn_serverdirectory + fn_header fi +fn_steamdl +fn_steaminstall +fn_steamfix +fn_loginstall +fn_getquery +fn_serverconfig +fn_header +fn_details +fn_installcomplete } -fn_autoip(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_logmanager(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_debugserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_console(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_backupserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_distro(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_uptime(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_load(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_emailnotification(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_emailtest(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_serverquery(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_monitorserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_updateserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_validateserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_restartserver(){ -fn_scriptlog "Restarting ${servername}" -fn_stopserver -fn_startserver -} - -fn_stopserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_startserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_details(){ +fn_functions(){ +# Functions are defines in fn_functions. functionfile="${FUNCNAME}" fn_runfunction } fn_runfunction(){ -# Download function if missing +# Functions are downloaded and run with this function if [ ! -f "${rootdir}/functions/${functionfile}" ]; then cd "${rootdir}" if [ ! -d "functions" ]; then mkdir functions fi - echo "loading ${functionfile}..." cd functions - wget --no-check-certificate -nv -N https://raw.githubusercontent.com/dgibbs64/linuxgameservers/master/functions/${functionfile} + echo -e "loading ${functionfile}...\c" + wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgameservers/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45- chmod +x "${functionfile}" cd "${rootdir}" sleep 1 - echo "" fi -# Run function source "${rootdir}/functions/${functionfile}" } -# -## Installer -# - -fn_header(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_steamdl(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_steaminstall(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_steamfix(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_loginstall(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_getquery(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_retryinstall(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_serverdirectory(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_serverconfig(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_install(){ -fn_rootcheck -fn_header -if [ -z "${autoinstall}" ]; then - fn_serverdirectory - fn_header -fi -fn_steamdl -fn_steaminstall -fn_steamfix -fn_loginstall -fn_getquery -fn_serverconfig -fn_header -fn_details -echo "=================================" -echo "Install Complete!" -echo "" -echo "To start server type:" -echo "${selfname} start" -echo "" -} - -fn_autoinstall(){ -autoinstall=1 -fn_install -} +fn_functions case "$1" in start) @@ -326,11 +123,10 @@ case "$1" in restart) fn_restartserver;; update) - fn_updateserver;; + norestart=1; + fn_versioncheck;; update-restart) - fn_stopserver - fn_updateserver - fn_startserver;; + fn_versioncheck;; validate) fn_validateserver;; validate-restart) diff --git a/UnrealTournament2004/ut2k4server b/UnrealTournament2004/ut2k4server index b63db353e..0a3452304 100644 --- a/UnrealTournament2004/ut2k4server +++ b/UnrealTournament2004/ut2k4server @@ -3,7 +3,7 @@ # Server Management Script # Author: Daniel Gibbs # Website: http://danielgibbs.co.uk -# Version: 011214 +# Version: 010115 #### Variables #### @@ -13,7 +13,7 @@ emailnotification="off" email="email@example.com" # Directories -rootdir="$(cd "$(dirname "${BASH_SOURCE[0]}" )" && pwd )" +rootdir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" selfname="$0" lockselfname=$(echo ".${servicename}.lock") filesdir="${rootdir}/serverfiles" @@ -55,163 +55,46 @@ parms="server ${defaultmap}?game=XGame.xDeathMatch -nohomedir ini=${ini} log=${g ##### Script ##### # Do not edit -# unless you know -# what you are doing -fn_scriptlog(){ - echo -e "$(date '+%b %d %H:%M:%S') ${servicename}: ${1}" >> "${scriptlog}" -} - -# [ FAIL ] -fn_printfail(){ - echo -en "\r\033[K[\e[0;31m FAIL \e[0;39m] $@" -} - -fn_printfailnl(){ - echo -e "\r\033[K[\e[0;31m FAIL \e[0;39m] $@" -} - -# [ OK ] -fn_printok(){ - echo -en "\r\033[K[\e[0;32m OK \e[0;39m] $@" -} - -fn_printoknl(){ - echo -e "\r\033[K[\e[0;32m OK \e[0;39m] $@" -} - -# [ INFO ] -fn_printinfo(){ - echo -en "\r\033[K[\e[0;36m INFO \e[0;39m] $@" -} - -fn_printinfonl(){ - echo -e "\r\033[K[\e[0;36m INFO \e[0;39m] $@" -} - -# [ WARN ] -fn_printwarn(){ - echo -en "\r\033[K[\e[1;33m WARN \e[0;39m] $@" -} - -fn_printwarnnl(){ - echo -e "\r\033[K[\e[1;33m WARN \e[0;39m] $@" -} - -# [ .... ] -fn_printdots(){ - echo -en "\r\033[K[ .... ] $@" -} - -fn_rootcheck(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_syscheck(){ -if [ ! -e "${systemdir}" ]; then - fn_printfailnl "Cannot access ${systemdir}: No such directory" - exit +fn_install(){ +fn_rootcheck +fn_header +if [ -z "${autoinstall}" ]; then + fn_serverdirectory + fn_header fi +fn_ut2k4filesdl +fn_ut2k4install +fn_ut2k4key +fn_loginstall +fn_getquery +fn_serverconfig +fn_ut2k4fix +fn_header +fn_details +fn_installcomplete } -fn_autoip(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_logmanager(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_debugserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_console(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_backupserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_distro(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_uptime(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_load(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_emailnotification(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_emailtest(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_serverquery(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_monitorserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_restartserver(){ -fn_scriptlog "Restarting ${servername}" -fn_stopserver -fn_startserver -} - -fn_stopserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_startserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_details(){ +fn_functions(){ +# Functions are defines in fn_functions. functionfile="${FUNCNAME}" fn_runfunction } fn_runfunction(){ -# Download function if missing +# Functions are downloaded and run with this function if [ ! -f "${rootdir}/functions/${functionfile}" ]; then cd "${rootdir}" if [ ! -d "functions" ]; then mkdir functions fi - echo "loading ${functionfile}..." cd functions - wget --no-check-certificate -nv -N https://raw.githubusercontent.com/dgibbs64/linuxgameservers/master/functions/${functionfile} + echo -e "loading ${functionfile}...\c" + wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgameservers/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45- chmod +x "${functionfile}" cd "${rootdir}" sleep 1 - echo "" fi -# Run function source "${rootdir}/functions/${functionfile}" } diff --git a/UnrealTournament99/ut99server b/UnrealTournament99/ut99server index 11675a163..959273eeb 100644 --- a/UnrealTournament99/ut99server +++ b/UnrealTournament99/ut99server @@ -3,7 +3,7 @@ # Server Management Script # Author: Daniel Gibbs # Website: http://danielgibbs.co.uk -# Version: 011214 +# Version: 010115 #### Variables #### @@ -13,7 +13,7 @@ emailnotification="off" email="email@example.com" # Directories -rootdir="$(cd "$(dirname "${BASH_SOURCE[0]}" )" && pwd )" +rootdir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" selfname="$0" lockselfname=$(echo ".${servicename}.lock") filesdir="${rootdir}/serverfiles" @@ -52,243 +52,49 @@ parms="server ${defaultmap}.unr ini=${systemdir}/${ini}" ##### Script ##### # Do not edit -# unless you know -# what you are doing -fn_scriptlog(){ - echo -e "$(date '+%b %d %H:%M:%S') ${servicename}: ${1}" >> "${scriptlog}" -} - -# [ FAIL ] -fn_printfail(){ - echo -en "\r\033[K[\e[0;31m FAIL \e[0;39m] $@" -} - -fn_printfailnl(){ - echo -e "\r\033[K[\e[0;31m FAIL \e[0;39m] $@" -} - -# [ OK ] -fn_printok(){ - echo -en "\r\033[K[\e[0;32m OK \e[0;39m] $@" -} - -fn_printoknl(){ - echo -e "\r\033[K[\e[0;32m OK \e[0;39m] $@" -} - -# [ INFO ] -fn_printinfo(){ - echo -en "\r\033[K[\e[0;36m INFO \e[0;39m] $@" -} - -fn_printinfonl(){ - echo -e "\r\033[K[\e[0;36m INFO \e[0;39m] $@" -} - -# [ WARN ] -fn_printwarn(){ - echo -en "\r\033[K[\e[1;33m WARN \e[0;39m] $@" -} - -fn_printwarnnl(){ - echo -e "\r\033[K[\e[1;33m WARN \e[0;39m] $@" -} - -# [ .... ] -fn_printdots(){ - echo -en "\r\033[K[ .... ] $@" -} - -fn_rootcheck(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_syscheck(){ -if [ ! -e "${systemdir}" ]; then - fn_printfailnl "Cannot access ${systemdir}: No such directory" - exit +fn_install(){ +fn_rootcheck +fn_header +if [ -z "${autoinstall}" ]; then + fn_serverdirectory + fn_header fi +fn_ut99filesdl +fn_ut99install +fn_loginstall +fn_getquery +fn_serverconfig +fn_ut99fix +fn_header +fn_details +fn_installcomplete } -fn_autoip(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_logmanager(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_debugserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_console(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_backupserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_distro(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_uptime(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_load(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_emailnotification(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_emailtest(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_serverquery(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_monitorserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_restartserver(){ -fn_scriptlog "Restarting ${servername}" -fn_stopserver -fn_startserver -} - -fn_stopserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_startserver(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_details(){ +fn_functions(){ +# Functions are defines in fn_functions. functionfile="${FUNCNAME}" fn_runfunction } fn_runfunction(){ -# Download function if missing +# Functions are downloaded and run with this function if [ ! -f "${rootdir}/functions/${functionfile}" ]; then cd "${rootdir}" if [ ! -d "functions" ]; then mkdir functions fi - echo "loading ${functionfile}..." cd functions - wget --no-check-certificate -nv -N https://raw.githubusercontent.com/dgibbs64/linuxgameservers/master/functions/${functionfile} + echo -e "loading ${functionfile}...\c" + wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgameservers/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45- chmod +x "${functionfile}" cd "${rootdir}" sleep 1 - echo "" fi -# Run function source "${rootdir}/functions/${functionfile}" } -fn_ut99compressmaps(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -# -## Installer -# - -fn_ut99fix(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_header(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_ut99filesdl(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - - -fn_ut99install(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_loginstall(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_getquery(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_retryinstall(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_serverdirectory(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_serverconfig(){ -functionfile="${FUNCNAME}" -fn_runfunction -} - -fn_install(){ -fn_rootcheck -fn_header -if [ -z "${autoinstall}" ]; then - fn_serverdirectory - fn_header -fi -fn_ut99filesdl -fn_ut99install -fn_loginstall -fn_getquery -fn_serverconfig -fn_ut99fix -fn_header -fn_details -echo "=================================" -echo "Install Complete!" -echo "" -echo "To start server type:" -echo "${selfname} start" -echo "" -} +fn_functions case "$1" in start)