Browse Source
* Scripts have been migrated to use fn_functions * Major changes please report any bug right awaypull/261/head
26 changed files with 635 additions and 5487 deletions
@ -3,7 +3,7 @@ |
|||||
# Server Management Script |
# Server Management Script |
||||
# Author: Daniel Gibbs |
# Author: Daniel Gibbs |
||||
# Website: http://danielgibbs.co.uk |
# Website: http://danielgibbs.co.uk |
||||
# Version: 011214 |
# Version: 010115 |
||||
|
|
||||
#### Variables #### |
#### Variables #### |
||||
|
|
||||
@ -16,11 +16,23 @@ email="[email protected]" |
|||||
steamuser="username" |
steamuser="username" |
||||
steampass="password" |
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 |
# Steam |
||||
appid="215360" |
appid="215360" |
||||
|
|
||||
# Directories |
# Directories |
||||
rootdir="$(cd "$(dirname "${BASH_SOURCE[0]}" )" && pwd )" |
rootdir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" |
||||
selfname="$0" |
selfname="$0" |
||||
lockselfname=$(echo ".${servicename}.lock") |
lockselfname=$(echo ".${servicename}.lock") |
||||
filesdir="${rootdir}/serverfiles" |
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" |
scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%d-%m-%Y-%H-%M-%S').log" |
||||
consolelogdate="${consolelogdir}/${servicename}-console-$(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 ##### |
##### Script ##### |
||||
# Do not edit |
# 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(){ |
fn_install(){ |
||||
if [ ! -e "${systemdir}" ]; then |
fn_rootcheck |
||||
fn_printfailnl "Cannot access ${systemdir}: No such directory" |
fn_header |
||||
exit |
if [ -z "${autoinstall}" ]; then |
||||
|
fn_serverdirectory |
||||
|
fn_header |
||||
fi |
fi |
||||
|
fn_steamdl |
||||
|
fn_steaminstall |
||||
|
fn_steamfix |
||||
|
fn_loginstall |
||||
|
fn_getquery |
||||
|
fn_serverconfig |
||||
|
fn_kffix |
||||
|
fn_header |
||||
|
fn_details |
||||
|
fn_installcomplete |
||||
} |
} |
||||
|
|
||||
fn_autoip(){ |
fn_functions(){ |
||||
functionfile="${FUNCNAME}" |
# Functions are defines in fn_functions. |
||||
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(){ |
|
||||
functionfile="${FUNCNAME}" |
functionfile="${FUNCNAME}" |
||||
fn_runfunction |
fn_runfunction |
||||
} |
} |
||||
|
|
||||
fn_runfunction(){ |
fn_runfunction(){ |
||||
# Download function if missing |
# Functions are downloaded and run with this function |
||||
if [ ! -f "${rootdir}/functions/${functionfile}" ]; then |
if [ ! -f "${rootdir}/functions/${functionfile}" ]; then |
||||
cd "${rootdir}" |
cd "${rootdir}" |
||||
if [ ! -d "functions" ]; then |
if [ ! -d "functions" ]; then |
||||
mkdir functions |
mkdir functions |
||||
fi |
fi |
||||
echo "loading ${functionfile}..." |
|
||||
cd functions |
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}" |
chmod +x "${functionfile}" |
||||
cd "${rootdir}" |
cd "${rootdir}" |
||||
sleep 1 |
sleep 1 |
||||
echo "" |
|
||||
fi |
fi |
||||
# Run function |
|
||||
source "${rootdir}/functions/${functionfile}" |
source "${rootdir}/functions/${functionfile}" |
||||
} |
} |
||||
|
|
||||
fn_unreal2compressmaps(){ |
fn_functions |
||||
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 |
|
||||
} |
|
||||
|
|
||||
case "$1" in |
case "$1" in |
||||
start) |
start) |
||||
@ -332,11 +121,10 @@ case "$1" in |
|||||
restart) |
restart) |
||||
fn_restartserver;; |
fn_restartserver;; |
||||
update) |
update) |
||||
fn_updateserver;; |
norestart=1; |
||||
|
fn_versioncheck;; |
||||
update-restart) |
update-restart) |
||||
fn_stopserver |
fn_versioncheck;; |
||||
fn_updateserver |
|
||||
fn_startserver;; |
|
||||
validate) |
validate) |
||||
fn_validateserver;; |
fn_validateserver;; |
||||
validate-restart) |
validate-restart) |
||||
|
@ -3,7 +3,7 @@ |
|||||
# Server Management Script |
# Server Management Script |
||||
# Author: Daniel Gibbs |
# Author: Daniel Gibbs |
||||
# Website: http://danielgibbs.co.uk |
# Website: http://danielgibbs.co.uk |
||||
# Version: 011214 |
# Version: 010115 |
||||
|
|
||||
#### Variables #### |
#### Variables #### |
||||
|
|
||||
@ -13,7 +13,7 @@ emailnotification="off" |
|||||
email="[email protected]" |
email="[email protected]" |
||||
|
|
||||
# Directories |
# Directories |
||||
rootdir="$(cd "$(dirname "${BASH_SOURCE[0]}" )" && pwd )" |
rootdir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" |
||||
selfname="$0" |
selfname="$0" |
||||
lockselfname=$(echo ".${servicename}.lock") |
lockselfname=$(echo ".${servicename}.lock") |
||||
filesdir="${rootdir}/serverfiles" |
filesdir="${rootdir}/serverfiles" |
||||
@ -55,163 +55,46 @@ parms="server ${defaultmap}?game=XGame.xDeathMatch -nohomedir ini=${ini} log=${g |
|||||
|
|
||||
##### Script ##### |
##### Script ##### |
||||
# Do not edit |
# Do not edit |
||||
# unless you know |
|
||||
# what you are doing |
|
||||
|
|
||||
fn_scriptlog(){ |
fn_install(){ |
||||
echo -e "$(date '+%b %d %H:%M:%S') ${servicename}: ${1}" >> "${scriptlog}" |
fn_rootcheck |
||||
} |
fn_header |
||||
|
if [ -z "${autoinstall}" ]; then |
||||
# [ FAIL ] |
fn_serverdirectory |
||||
fn_printfail(){ |
fn_header |
||||
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 |
|
||||
fi |
fi |
||||
|
fn_ut2k4filesdl |
||||
|
fn_ut2k4install |
||||
|
fn_ut2k4key |
||||
|
fn_loginstall |
||||
|
fn_getquery |
||||
|
fn_serverconfig |
||||
|
fn_ut2k4fix |
||||
|
fn_header |
||||
|
fn_details |
||||
|
fn_installcomplete |
||||
} |
} |
||||
|
|
||||
fn_autoip(){ |
fn_functions(){ |
||||
functionfile="${FUNCNAME}" |
# Functions are defines in fn_functions. |
||||
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(){ |
|
||||
functionfile="${FUNCNAME}" |
functionfile="${FUNCNAME}" |
||||
fn_runfunction |
fn_runfunction |
||||
} |
} |
||||
|
|
||||
fn_runfunction(){ |
fn_runfunction(){ |
||||
# Download function if missing |
# Functions are downloaded and run with this function |
||||
if [ ! -f "${rootdir}/functions/${functionfile}" ]; then |
if [ ! -f "${rootdir}/functions/${functionfile}" ]; then |
||||
cd "${rootdir}" |
cd "${rootdir}" |
||||
if [ ! -d "functions" ]; then |
if [ ! -d "functions" ]; then |
||||
mkdir functions |
mkdir functions |
||||
fi |
fi |
||||
echo "loading ${functionfile}..." |
|
||||
cd functions |
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}" |
chmod +x "${functionfile}" |
||||
cd "${rootdir}" |
cd "${rootdir}" |
||||
sleep 1 |
sleep 1 |
||||
echo "" |
|
||||
fi |
fi |
||||
# Run function |
|
||||
source "${rootdir}/functions/${functionfile}" |
source "${rootdir}/functions/${functionfile}" |
||||
} |
} |
||||
|
|
||||
|
@ -3,7 +3,7 @@ |
|||||
# Server Management Script |
# Server Management Script |
||||
# Author: Daniel Gibbs |
# Author: Daniel Gibbs |
||||
# Website: http://danielgibbs.co.uk |
# Website: http://danielgibbs.co.uk |
||||
# Version: 011214 |
# Version: 010115 |
||||
|
|
||||
#### Variables #### |
#### Variables #### |
||||
|
|
||||
@ -13,7 +13,7 @@ emailnotification="off" |
|||||
email="[email protected]" |
email="[email protected]" |
||||
|
|
||||
# Directories |
# Directories |
||||
rootdir="$(cd "$(dirname "${BASH_SOURCE[0]}" )" && pwd )" |
rootdir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" |
||||
selfname="$0" |
selfname="$0" |
||||
lockselfname=$(echo ".${servicename}.lock") |
lockselfname=$(echo ".${servicename}.lock") |
||||
filesdir="${rootdir}/serverfiles" |
filesdir="${rootdir}/serverfiles" |
||||
@ -52,243 +52,49 @@ parms="server ${defaultmap}.unr ini=${systemdir}/${ini}" |
|||||
|
|
||||
##### Script ##### |
##### Script ##### |
||||
# Do not edit |
# Do not edit |
||||
# unless you know |
|
||||
# what you are doing |
|
||||
|
|
||||
fn_scriptlog(){ |
fn_install(){ |
||||
echo -e "$(date '+%b %d %H:%M:%S') ${servicename}: ${1}" >> "${scriptlog}" |
fn_rootcheck |
||||
} |
fn_header |
||||
|
if [ -z "${autoinstall}" ]; then |
||||
# [ FAIL ] |
fn_serverdirectory |
||||
fn_printfail(){ |
fn_header |
||||
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 |
|
||||
fi |
fi |
||||
|
fn_ut99filesdl |
||||
|
fn_ut99install |
||||
|
fn_loginstall |
||||
|
fn_getquery |
||||
|
fn_serverconfig |
||||
|
fn_ut99fix |
||||
|
fn_header |
||||
|
fn_details |
||||
|
fn_installcomplete |
||||
} |
} |
||||
|
|
||||
fn_autoip(){ |
fn_functions(){ |
||||
functionfile="${FUNCNAME}" |
# Functions are defines in fn_functions. |
||||
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(){ |
|
||||
functionfile="${FUNCNAME}" |
functionfile="${FUNCNAME}" |
||||
fn_runfunction |
fn_runfunction |
||||
} |
} |
||||
|
|
||||
fn_runfunction(){ |
fn_runfunction(){ |
||||
# Download function if missing |
# Functions are downloaded and run with this function |
||||
if [ ! -f "${rootdir}/functions/${functionfile}" ]; then |
if [ ! -f "${rootdir}/functions/${functionfile}" ]; then |
||||
cd "${rootdir}" |
cd "${rootdir}" |
||||
if [ ! -d "functions" ]; then |
if [ ! -d "functions" ]; then |
||||
mkdir functions |
mkdir functions |
||||
fi |
fi |
||||
echo "loading ${functionfile}..." |
|
||||
cd functions |
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}" |
chmod +x "${functionfile}" |
||||
cd "${rootdir}" |
cd "${rootdir}" |
||||
sleep 1 |
sleep 1 |
||||
echo "" |
|
||||
fi |
fi |
||||
# Run function |
|
||||
source "${rootdir}/functions/${functionfile}" |
source "${rootdir}/functions/${functionfile}" |
||||
} |
} |
||||
|
|
||||
fn_ut99compressmaps(){ |
fn_functions |
||||
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 "" |
|
||||
} |
|
||||
|
|
||||
case "$1" in |
case "$1" in |
||||
start) |
start) |
||||
|
Loading…
Reference in new issue