Browse Source

Changes to terminal and log messages.

* Major changes to terminal and log messages.
* More constant and improved wording of terminal and log messages.
* New local variable "modulename" that is displayed in terminal and log
messages.
* Added commented descriptions to most functions.
pull/261/head
Daniel Gibbs 10 years ago
parent
commit
5cf0a5f5c9
  1. 6
      functions/fn_autoip
  2. 31
      functions/fn_backupserver
  3. 18
      functions/fn_console
  4. 18
      functions/fn_csgofix
  5. 20
      functions/fn_debugserver
  6. 4
      functions/fn_details
  7. 10
      functions/fn_emailnotification
  8. 15
      functions/fn_emailtest
  9. 2
      functions/fn_functions
  10. 19
      functions/fn_glibcfix
  11. 15
      functions/fn_logmanager
  12. 94
      functions/fn_messages
  13. 28
      functions/fn_monitorserver
  14. 2
      functions/fn_serverconfig
  15. 4
      functions/fn_serverdirectory
  16. 30
      functions/fn_serverquery
  17. 17
      functions/fn_startserver
  18. 6
      functions/fn_steaminstall
  19. 13
      functions/fn_stopserver
  20. 11
      functions/fn_updateserver
  21. 12
      functions/fn_validateserver
  22. 80
      functions/fn_versioncheck

6
functions/fn_autoip

@ -2,9 +2,9 @@
# LGSM fn_autoip function # LGSM fn_autoip function
# Author: Daniel Gibbs # Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk # Website: http://danielgibbs.co.uk
# Version: 291214 # Version: 010115
# Identifies the server interface IP. # Description: Identifies the server interface IP.
# If multiple interfaces this will need to be set manually. # If multiple interfaces this will need to be set manually.
if [ ! -f /bin/ip ]; then if [ ! -f /bin/ip ]; then
@ -17,7 +17,7 @@ getipwc=$(${ipcommand} -o -4 addr|awk '{print $4 }'|grep -oe '\([0-9]\{1,3\}\.\?
if [ "${ip}" == "0.0.0.0" ]||[ "${ip}" == "" ]; then if [ "${ip}" == "0.0.0.0" ]||[ "${ip}" == "" ]; then
if [ "${getipwc}" -ge "2" ]; then if [ "${getipwc}" -ge "2" ]; then
fn_printwarn "Multiple active network interfaces.\n\n" fn_printwarn "Multiple active network interfaces found.\n\n"
echo -en "Manually specify the IP you want to use within the ${selfname} script.\n" echo -en "Manually specify the IP you want to use within the ${selfname} script.\n"
echo -en "Set ip=\"0.0.0.0\" to one of the following:\n" echo -en "Set ip=\"0.0.0.0\" to one of the following:\n"
echo -en "${getip}\n" echo -en "${getip}\n"

31
functions/fn_backupserver

@ -2,8 +2,11 @@
# LGSM fn_backupserver function # LGSM fn_backupserver function
# Author: Daniel Gibbs # Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk # Website: http://danielgibbs.co.uk
# Version: 011214 # Version: 010115
# Description: Creates a .tar.gz file in the backup directory.
local modulename="Backup"
fn_rootcheck fn_rootcheck
fn_syscheck fn_syscheck
backupname="${servicename}-$(date '+%Y-%m-%d-%H%M%S')" backupname="${servicename}-$(date '+%Y-%m-%d-%H%M%S')"
@ -11,7 +14,7 @@ echo ""
echo "${gamename} Backup" echo "${gamename} Backup"
echo "============================" echo "============================"
echo "" echo ""
echo "The following backup will be created." echo "The following backup will be created:"
echo "" echo ""
echo "${backupdir}/${backupname}.tar.gz" echo "${backupdir}/${backupname}.tar.gz"
echo "" echo ""
@ -25,9 +28,11 @@ esac
done done
tmuxwc=$(tmux list-sessions 2>&1|awk '{print $1}'|grep -v failed|grep -Ec "^${servicename}:") tmuxwc=$(tmux list-sessions 2>&1|awk '{print $1}'|grep -v failed|grep -Ec "^${servicename}:")
if [ "${tmuxwc}" -eq 1 ]; then if [ "${tmuxwc}" -eq 1 ]; then
echo -e "\e[0;31mWARNING!\e[0;39m ${servicename} is currently running" echo ""
fn_printwarningnl "${servicename} is currently running."
sleep 1
while true; do while true; do
read -p "Would you like to stop ${servicename} while running the backup? [y/N]" yn read -p "Stop ${servicename} while running the backup? [y/N]" yn
case $yn in case $yn in
[Yy]* ) fn_stopserver; break;; [Yy]* ) fn_stopserver; break;;
[Nn]* ) break;; [Nn]* ) break;;
@ -35,14 +40,22 @@ if [ "${tmuxwc}" -eq 1 ]; then
esac esac
done done
fi fi
fn_printdots "Starting backup ${servicename}: ${servername}" fn_scriptlog "Started"
echo -en "starting backup.\r"
sleep 1
echo -en "starting backup..\r"
sleep 1 sleep 1
fn_printok "Starting backup ${servicename}: ${servername}" echo -en "starting backup...\r"
fn_scriptlog "Backup started"
sleep 1 sleep 1
echo -en "\n" echo -en "\n"
cd "${rootdir}" cd "${rootdir}"
mkdir -pv "${backupdir}" > /dev/null 2>&1 mkdir -pv "${backupdir}" > /dev/null 2>&1
tar -cvzf "${backupdir}/${backupname}.tar.gz" --exclude "${backupdir}" ./* tar -cvzf "${backupdir}/${backupname}.tar.gz" --exclude "${backupdir}" ./*
echo -en "\r\033[K${servicename} Backup complete" echo ""
fn_scriptlog "Backup complete" echo "Backup created: ${backupdir}/${backupname}.tar.gz"
fn_scriptlog "Created: ${backupdir}/${backupname}.tar.gz"
sleep 1
echo ""
fn_printcompletenl "Complete."
fn_scriptlog "Complete"
echo ""

18
functions/fn_console

@ -2,16 +2,19 @@
# LGSM fn_console function # LGSM fn_console function
# Author: Daniel Gibbs # Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk # Website: http://danielgibbs.co.uk
# Version: 011214 # Version: 010115
# Description: Gives access to the server tmux console.
local modulename="Console"
fn_rootcheck fn_rootcheck
fn_syscheck fn_syscheck
echo "" echo ""
echo "${gamename} Console" echo "${gamename} Console"
echo "============================" echo "============================"
echo "" echo ""
echo "Press \"CTRL+b d\" to exit console" echo "Press \"CTRL+b d\" to exit console."
echo -e "\e[0;31mWARNING!\e[0;39m Do NOT press CTRL+c to exit" fn_printwarningnl "Do NOT press CTRL+c to exit."
echo "" echo ""
while true; do while true; do
read -p "Continue? [y/N]" yn read -p "Continue? [y/N]" yn
@ -21,16 +24,17 @@ while true; do
* ) echo "Please answer yes or no.";; * ) echo "Please answer yes or no.";;
esac esac
done done
fn_printdots "Starting ${servicename} console" fn_printdots "Starting"
sleep 1 sleep 1
tmuxwc=$(tmux list-sessions 2>&1|awk '{print $1}'|grep -v failed|grep -Ec "^${servicename}:") tmuxwc=$(tmux list-sessions 2>&1|awk '{print $1}'|grep -v failed|grep -Ec "^${servicename}:")
if [ "${tmuxwc}" -eq 1 ]; then if [ "${tmuxwc}" -eq 1 ]; then
fn_printoknl "Starting ${servicename} console" fn_printoknl "Starting"
fn_scriptlog "Console accessed" fn_scriptlog "accessed"
sleep 1 sleep 1
tmux attach-session -t ${servicename} tmux attach-session -t ${servicename}
else else
fn_printfailnl "Starting ${servicename} console: ${servername} not running" fn_printfailnl "Server not running"
fn_scriptlog "Failed to access: Server not running"
sleep 1 sleep 1
while true; do while true; do
read -p "Do you want to start the server? [y/N]" yn read -p "Do you want to start the server? [y/N]" yn

18
functions/fn_csgofix

@ -2,13 +2,17 @@
# LGSM fn_csgofix function # LGSM fn_csgofix function
# Author: Daniel Gibbs # Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk # Website: http://danielgibbs.co.uk
# Version: 011214 # Version: 010115
# Description: Resolves various issues with csgo.
# Fixed server not always creating steam_appid.txt file.
fn_csgoappfix(){ fn_csgoappfix(){
if [ ! -f "${filesdir}/steam_appid.txt" ]; then if [ ! -f "${filesdir}/steam_appid.txt" ]; then
fn_printdots "Applying 730 steam_appid.txt Fix." fn_printdots "Applying 730 steam_appid.txt Fix."
sleep 1 sleep 1
fn_printinfo "Applying 730 steam_appid.txt Fix." fn_printinfo "Applying 730 steam_appid.txt Fix."
fn_scriptlog "Applying 730 steam_appid.txt Fix"
sleep 1 sleep 1
echo -en "\n" echo -en "\n"
echo -n "730" >> "${filesdir}/steam_appid.txt" echo -n "730" >> "${filesdir}/steam_appid.txt"
@ -16,8 +20,8 @@ fi
} }
fn_csgofixes(){ fn_csgofixes(){
# Fixes the following error # Fixes the following error:
# Error parsing BotProfile.db - unknown attribute 'Rank" # Error parsing BotProfile.db - unknown attribute 'Rank".
if ! grep -q "//Rank" "${systemdir}/botprofile.db" ; then if ! grep -q "//Rank" "${systemdir}/botprofile.db" ; then
echo "botprofile.db fix removes the following error from appearing on the console:" echo "botprofile.db fix removes the following error from appearing on the console:"
echo " Error parsing BotProfile.db - unknown attribute 'Rank" echo " Error parsing BotProfile.db - unknown attribute 'Rank"
@ -31,8 +35,8 @@ if ! grep -q "//Rank" "${systemdir}/botprofile.db" ; then
echo "" echo ""
fi fi
# Fixes errors simular to the following # Fixes errors simular to the following:
# Unknown command "cl_bobamt_vert" # Unknown command "cl_bobamt_vert".
if ! grep -q "//exec default" "${servercfgdir}/valve.rc" || ! grep -q "//exec joystick" "${servercfgdir}/valve.rc"; then if ! grep -q "//exec default" "${servercfgdir}/valve.rc" || ! grep -q "//exec joystick" "${servercfgdir}/valve.rc"; then
echo "valve.rc fix removes the following error from appearing on the console:" echo "valve.rc fix removes the following error from appearing on the console:"
echo " Unknown command \"cl_bobamt_vert\"" echo " Unknown command \"cl_bobamt_vert\""
@ -47,8 +51,8 @@ if ! grep -q "//exec default" "${servercfgdir}/valve.rc" || ! grep -q "//exec jo
echo "" echo ""
fi fi
# Fixes errors simular to the following # Fixes errors simular to the following:
# http://forums.steampowered.com/forums/showthread.php?t=3170366 # http://forums.steampowered.com/forums/showthread.php?t=3170366.
if [ -f "${systemdir}/subscribed_collection_ids.txt" ]||[ -f "${systemdir}/subscribed_file_ids.txt" ]||[ -f "${systemdir}/ugc_collection_cache.txt" ]; then if [ -f "${systemdir}/subscribed_collection_ids.txt" ]||[ -f "${systemdir}/subscribed_file_ids.txt" ]||[ -f "${systemdir}/ugc_collection_cache.txt" ]; then
echo "workshopmapfix fixes the following error:" echo "workshopmapfix fixes the following error:"
echo " http://forums.steampowered.com/forums/showthread.php?t=3170366" echo " http://forums.steampowered.com/forums/showthread.php?t=3170366"

20
functions/fn_debugserver

@ -2,8 +2,11 @@
# LGSM fn_debugserver function # LGSM fn_debugserver function
# Author: Daniel Gibbs # Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk # Website: http://danielgibbs.co.uk
# Version: 121114 # Version: 010115
# Description: Runs the server without tmux. Runs direct from the terminal.
local modulename="Debug"
fn_rootcheck fn_rootcheck
fn_syscheck fn_syscheck
fn_autoip fn_autoip
@ -26,11 +29,10 @@ if [ "${engine}" == "source" ]||[ "${engine}" == "goldsource" ]; then
else else
echo "${executable} ${parms}" echo "${executable} ${parms}"
fi fi
echo "" echo ""
echo -e "Use for identifying server issues only!" echo -e "Use for identifying server issues only!"
echo -e "Press CTRL+c to drop out of debug mode" echo -e "Press CTRL+c to drop out of debug mode."
echo -e "\e[0;31mWARNING!\e[0;39m If ${servicename} is already running it will be stopped" fn_printwarningnl "If ${servicename} is already running it will be stopped."
echo "" echo ""
while true; do while true; do
read -p "Continue? [y/N]" yn read -p "Continue? [y/N]" yn
@ -40,12 +42,16 @@ while true; do
* ) echo "Please answer yes or no.";; * ) echo "Please answer yes or no.";;
esac esac
done done
fn_scriptlog "Starting debug"
fn_printinfonl "Stopping any running servers"
fn_scriptlog "Stopping any running servers"
sleep 1
fn_stopserver fn_stopserver
fn_printdots "Starting debug mode ${servicename}: ${servername}" fn_printdots "Starting debug"
sleep 1 sleep 1
fn_printok "Starting debug mode ${servicename}: ${servername}" fn_printok "Starting debug"
fn_scriptlog "Started debug"
sleep 1 sleep 1
fn_scriptlog "Started debug mode ${servername}"
echo -en "\n" echo -en "\n"
cd "${executabledir}" cd "${executabledir}"
if [ "${engine}" == "source" ]||[ "${engine}" == "goldsource" ]; then if [ "${engine}" == "source" ]||[ "${engine}" == "goldsource" ]; then

4
functions/fn_details

@ -2,7 +2,9 @@
# LGSM fn_details function # LGSM fn_details function
# Author: Daniel Gibbs # Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk # Website: http://danielgibbs.co.uk
# Version: 231214 # Version: 291214
# Description: Displays server infomation.
fn_avalanchedetails(){ fn_avalanchedetails(){
fn_autoip fn_autoip

10
functions/fn_emailnotification

@ -2,8 +2,12 @@
# LGSM fn_emailnotification function # LGSM fn_emailnotification function
# Author: Daniel Gibbs # Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk # Website: http://danielgibbs.co.uk
# Version: 011214 # Version: 010115
# Description: Sends email notification if monitor picks up a failure.
local modulename="Email"
fn_printdots "Sending notification to ${email}"
fn_distro fn_distro
fn_uptime fn_uptime
fn_load fn_load
@ -35,7 +39,7 @@ if [ ! -z "${gamelogdir}" ]; then
tail "${gamelogdir}"/*|grep -v "==>"|sed '/^$/d'|tail -25 >> "${emaillog}" tail "${gamelogdir}"/*|grep -v "==>"|sed '/^$/d'|tail -25 >> "${emaillog}"
fi fi
mail -s "${subject}" ${email} < "${emaillog}" mail -s "${subject}" ${email} < "${emaillog}"
fn_printinfo "Sent email notification to ${email}" fn_printok "Sending notification to ${email}"
fn_scriptlog "Sent email notification to ${email}" fn_scriptlog "Sent notification to ${email}"
sleep 1 sleep 1
echo -en "\n" echo -en "\n"

15
functions/fn_emailtest

@ -2,19 +2,20 @@
# LGSM fn_emailtest function # LGSM fn_emailtest function
# Author: Daniel Gibbs # Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk # Website: http://danielgibbs.co.uk
# Version: 011214 # Version: 010115
# Description: Sends a test email notification.
local modulename="Email"
fn_rootcheck fn_rootcheck
fn_syscheck fn_syscheck
fn_scriptlog "Emailing test notification"
if [ "${emailnotification}" = "on" ]; then if [ "${emailnotification}" = "on" ]; then
fn_scriptlog "Sending test notification"
subject="${servicename} Email Test Notification - Testing ${servername}" subject="${servicename} Email Test Notification - Testing ${servername}"
failurereason="Testing ${servicename} email notification" failurereason="Testing ${servicename} email notification"
actiontaken="Sent test email...hello is this thing on?" actiontaken="Sent test email...hello is this thing on?"
fn_emailnotification fn_emailnotification
else else
fn_printfailnl "Email notification not enabled" fn_printfailnl "Notifications not enabled"
fn_scriptlog "Email notification not enabled" fn_scriptlog "Notifications not enabled"
fi fi
sleep 1
echo -en "\n"

2
functions/fn_functions

@ -3,7 +3,7 @@
# Author: Daniel Gibbs # Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk # Website: http://danielgibbs.co.uk
# Version: 241214 # Version: 241214
#
# Description: Defines all functions to allow download and execution of functions using fn_runfunction. # Description: Defines all functions to allow download and execution of functions using fn_runfunction.
# This function is called first before any other function. Without this file other functions would not load. # This function is called first before any other function. Without this file other functions would not load.

19
functions/fn_glibcfix

@ -2,13 +2,13 @@
# LGSM fn_glibcfix function # LGSM fn_glibcfix function
# Author: Daniel Gibbs # Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk # Website: http://danielgibbs.co.uk
# Version: 171214 # Version: 281214
fn_glibcfixmsg(){ fn_glibcfixmsg(){
echo "GLIBC Fix required" echo "GLIBC Fix required"
echo "============================" echo "============================"
sleep 1 sleep 1
echo -e "\e[0;31mWARNING!\e[0;39m ${gamename} requires GLIBC_${glibcversion} or above" fn_printwarningnl "${gamename} requires GLIBC_${glibcversion} or above"
sleep 1 sleep 1
echo "" echo ""
echo -e "Currently installed:\e[0;31m GLIBC_$(ldd --version |grep ldd|awk '{print $NF}')\e[0;39m" echo -e "Currently installed:\e[0;31m GLIBC_$(ldd --version |grep ldd|awk '{print $NF}')\e[0;39m"
@ -19,16 +19,21 @@ echo "The installer will now detect and download the required files to allow ${g
echo "note: This will NOT upgrade GLIBC on your system." echo "note: This will NOT upgrade GLIBC on your system."
sleep 1 sleep 1
echo "" echo ""
echo "loading required files..." echo -en "loading required files.\r"
sleep 1 sleep 1
echo -en "loading required files..\r"
sleep 1
echo -en "loading required files...\r"
sleep 1
echo -en "\n"
} }
# if ldd command not detected # if ldd command not detected
if [ -z $(command -v ldd) ]; then if [ -z $(command -v ldd) ]; then
echo "" echo ""
echo -e "\r\033[K\e[0;31mFAIL\e[0;39m GLIBC is not detected." fn_printfailurenl "GLIBC is not detected"
sleep 1 sleep 1
echo "Install GLIBC and retry installation" echo "Install GLIBC and retry installation."
sleep 1 sleep 1
echo "" echo ""
while true; do while true; do
@ -101,10 +106,10 @@ elif [ "$(ldd --version | sed -n '1 p' | tr -cd [:digit:] | tail -c 3)" -lt 215
fn_glibcfixmsg fn_glibcfixmsg
cp -v "${rootdir}/steamcmd/linux32/libstdc++.so.6" "${filesdir}/Bin/libstdc++.so.6" cp -v "${rootdir}/steamcmd/linux32/libstdc++.so.6" "${filesdir}/Bin/libstdc++.so.6"
else else
echo "error: Unable to detect game. Fix not applied" fn_printfailurenl "Unable to detect game. Fix not applied"
fi fi
else else
echo "error: Unable to detect game. Fix not applied" fn_printfailurenl "Unable to detect game. Fix not applied"
fi fi
fi fi
sleep 1 sleep 1

15
functions/fn_logmanager

@ -2,17 +2,20 @@
# LGSM fn_logmanager function # LGSM fn_logmanager function
# Author: Daniel Gibbs # Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk # Website: http://danielgibbs.co.uk
# Version: 011214 # Version: 010115
# Description: Acts as a log rotater, removing old logs.
local modulename="Log Manager"
if [ ! -e "${consolelog}" ]; then if [ ! -e "${consolelog}" ]; then
touch "${consolelog}" touch "${consolelog}"
fi fi
# log manager will active if finds logs older than ${logdays} # log manager will active if finds logs older than ${logdays}
if [ $(find "${scriptlogdir}"/* -mtime +${logdays}|wc -l) -ne "0" ]; then if [ $(find "${scriptlogdir}"/* -mtime +${logdays}|wc -l) -ne "0" ]; then
fn_printdots "Starting log cleaner" fn_printdots "Starting"
sleep 1 sleep 1
fn_printok "Starting log cleaner" fn_printok "Starting"
fn_scriptlog "Starting log cleaner" fn_scriptlog "Starting"
sleep 1 sleep 1
echo -en "\n" echo -en "\n"
fn_printinfo "Removing logs older than ${logdays} days" fn_printinfo "Removing logs older than ${logdays} days"
@ -40,8 +43,8 @@ if [ $(find "${scriptlogdir}"/* -mtime +${logdays}|wc -l) -ne "0" ]; then
fi fi
find "${scriptlogdir}"/* -mtime +${logdays} -exec rm {} \; find "${scriptlogdir}"/* -mtime +${logdays} -exec rm {} \;
find "${consolelogdir}"/* -mtime +${logdays} -exec rm {} \; find "${consolelogdir}"/* -mtime +${logdays} -exec rm {} \;
fn_printok "Log cleaner removed ${count} log files" fn_printok "Removed ${count} log files"
fn_scriptlog "Log cleaner removed ${count} log files" fn_scriptlog "Removed ${count} log files"
sleep 1 sleep 1
echo -en "\n" echo -en "\n"
fi fi

94
functions/fn_messages

@ -2,53 +2,119 @@
# LGSM fn_messages function # LGSM fn_messages function
# Author: Daniel Gibbs # Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk # Website: http://danielgibbs.co.uk
# Version: 241214 # Version: 010115
#
# Description: Defines on-screen messages such as and now script logs look
# Displays date and servicename for log files # Description: Defines on-screen messages such as [ OK ] and how script logs look.
# Date and servicename for log files.
fn_scriptlog(){ fn_scriptlog(){
echo -e "$(date '+%b %d %H:%M:%S') ${servicename}: ${1}" >> "${scriptlog}" if [ ! -z ${modulename} ]; then
echo -e "$(date '+%b %d %H:%M:%S') ${servicename}: ${modulename}: ${1}" >> "${scriptlog}"
else
echo -e "$(date '+%b %d %H:%M:%S') ${servicename}: ${1}" >> "${scriptlog}"
fi
} }
# [ FAIL ] # [ FAIL ]
fn_printfail(){ fn_printfail(){
echo -en "\r\033[K[\e[0;31m FAIL \e[0;39m] $@" if [ ! -z ${modulename} ]; then
echo -en "\r\033[K[\e[0;31m FAIL \e[0m] ${modulename} ${servicename}: $@"
else
echo -en "\r\033[K[\e[0;31m FAIL \e[0m] $@"
fi
} }
fn_printfailnl(){ fn_printfailnl(){
echo -e "\r\033[K[\e[0;31m FAIL \e[0;39m] $@" if [ ! -z ${modulename} ]; then
echo -e "\r\033[K[\e[0;31m FAIL \e[0m] ${modulename} ${servicename}: $@"
else
echo -e "\r\033[K[\e[0;31m FAIL \e[0m] $@"
fi
} }
# [ OK ] # [ OK ]
fn_printok(){ fn_printok(){
echo -en "\r\033[K[\e[0;32m OK \e[0;39m] $@" if [ ! -z ${modulename} ]; then
echo -en "\r\033[K[\e[0;32m OK \e[0m] ${modulename} ${servicename}: $@"
else
echo -en "\r\033[K[\e[0;32m OK \e[0m] $@"
fi
} }
fn_printoknl(){ fn_printoknl(){
echo -e "\r\033[K[\e[0;32m OK \e[0;39m] $@" if [ ! -z ${modulename} ]; then
echo -e "\r\033[K[\e[0;32m OK \e[0m] ${modulename} ${servicename}: $@"
else
echo -e "\r\033[K[\e[0;32m OK \e[0m] $@"
fi
} }
# [ INFO ] # [ INFO ]
fn_printinfo(){ fn_printinfo(){
echo -en "\r\033[K[\e[0;36m INFO \e[0;39m] $@" if [ ! -z ${modulename} ]; then
echo -en "\r\033[K[\e[0;36m INFO \e[0m] ${modulename} ${servicename}: $@"
else
echo -en "\r\033[K[\e[0;36m INFO \e[0m] $@"
fi
} }
fn_printinfonl(){ fn_printinfonl(){
echo -e "\r\033[K[\e[0;36m INFO \e[0;39m] $@" if [ ! -z ${modulename} ]; then
echo -e "\r\033[K[\e[0;36m INFO \e[0m] ${modulename} ${servicename}: $@"
else
echo -e "\r\033[K[\e[0;36m INFO \e[0m] $@"
fi
} }
# [ WARN ] # [ WARN ]
fn_printwarn(){ fn_printwarn(){
echo -en "\r\033[K[\e[1;33m WARN \e[0;39m] $@" if [ ! -z ${modulename} ]; then
echo -en "\r\033[K[\e[1;33m WARN \e[0m] ${modulename} ${servicename}: $@"
else
echo -en "\r\033[K[\e[1;33m WARN \e[0m] $@"
fi
} }
fn_printwarnnl(){ fn_printwarnnl(){
echo -e "\r\033[K[\e[1;33m WARN \e[0;39m] $@" if [ ! -z ${modulename} ]; then
echo -e "\r\033[K[\e[1;33m WARN \e[0m] ${modulename} ${servicename}: $@"
else
echo -e "\r\033[K[\e[1;33m WARN \e[0m] $@"
fi
} }
# [ .... ] # [ .... ]
fn_printdots(){ fn_printdots(){
echo -en "\r\033[K[ .... ] $@" if [ ! -z ${modulename} ]; then
echo -en "\r\033[K[ .... ] ${modulename} ${servicename}: $@"
else
echo -en "\r\033[K[ .... ] $@"
fi
}
# Complete!
fn_printcomplete(){
echo -en "\e[0;32mComplete!\e[0m $@"
}
fn_printcompletenl(){
echo -e "\e[0;32mComplete!\e[0m $@"
}
# Warning!
fn_printwarning(){
echo -en "\e[0;33mWarning!\e[0m $@"
}
fn_printwarningnl(){
echo -e "\e[0;33mWarning!\e[0m $@"
}
# Failure!
fn_printfailure(){
echo -en "\e[0;31mFailure!\e[0m $@"
} }
fn_printfailurenl(){
echo -e "\e[0;31mFailure!\e[0m $@"
}

28
functions/fn_monitorserver

@ -2,17 +2,21 @@
# LGSM fn_monitorserver function # LGSM fn_monitorserver function
# Author: Daniel Gibbs # Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk # Website: http://danielgibbs.co.uk
# Version: 011214 # Version: 010115
# Description: Monitors server by checking for running proccesses
# then passes to fn_serverquery.
local modulename="Monitor"
fn_rootcheck fn_rootcheck
fn_syscheck fn_syscheck
fn_autoip fn_autoip
fn_printdots "Monitoring ${servicename}: ${servername}" fn_printdots "${servername}"
fn_scriptlog "Monitoring ${servername}" fn_scriptlog "${servername}"
sleep 1 sleep 1
if [ ! -f "${lockselfname}" ]; then if [ ! -f "${lockselfname}" ]; then
fn_printinfo "Monitoring ${servicename}: Monitor disabled: No lock file found" fn_printinfo "Disabled: No lock file found"
fn_scriptlog "Monitor disabled: No lock file found" fn_scriptlog "Disabled: No lock file found"
sleep 1 sleep 1
echo -en "\n" echo -en "\n"
echo "To enable monitor run ${selfname} start" echo "To enable monitor run ${selfname} start"
@ -20,19 +24,19 @@ if [ ! -f "${lockselfname}" ]; then
fi fi
updatecheck=$(ps -ef|grep "${selfname} update"|grep -v grep|wc -l) updatecheck=$(ps -ef|grep "${selfname} update"|grep -v grep|wc -l)
if [ "${updatecheck}" = "0" ]; then if [ "${updatecheck}" = "0" ]; then
fn_printdots "Monitoring ${servicename}: Checking session: CHECKING" fn_printdots "Checking session: CHECKING"
fn_scriptlog "Checking session: CHECKING" fn_scriptlog "Checking session: CHECKING"
sleep 1 sleep 1
tmuxwc=$(tmux list-sessions 2>&1|awk '{print $1}'|grep -v failed|grep -E "^${servicename}:"|wc -l) tmuxwc=$(tmux list-sessions 2>&1|awk '{print $1}'|grep -v failed|grep -E "^${servicename}:"|wc -l)
if [ "${tmuxwc}" -eq 1 ]; then if [ "${tmuxwc}" -eq 1 ]; then
fn_printok "Monitoring ${servicename}: Checking session: OK" fn_printok "Checking session: OK"
fn_scriptlog "Checking session: OK" fn_scriptlog "Checking session: OK"
sleep 1 sleep 1
echo -en "\n" echo -en "\n"
fn_serverquery fn_serverquery
exit exit
else else
fn_printfail "Monitoring ${servicename}: Checking session: FAIL" fn_printfail "Checking session: FAIL"
fn_scriptlog "Checking session: FAIL" fn_scriptlog "Checking session: FAIL"
sleep 1 sleep 1
echo -en "\n" echo -en "\n"
@ -46,10 +50,10 @@ if [ "${updatecheck}" = "0" ]; then
fn_startserver fn_startserver
fi fi
else else
fn_printinfonl "Monitoring ${servicename}: Detected SteamCMD is checking for updates" fn_printinfonl "SteamCMD is currently checking for updates"
fn_scriptlog "Detected SteamCMD is checking for updates" fn_scriptlog "SteamCMD is currently checking for updates"
sleep 1 sleep 1
fn_printinfonl "Monitoring ${servicename}: When updates complete ${servicename} will start" fn_printinfonl "When update is complete ${servicename} will start"
fn_scriptlog "When updates complete ${servicename} will start" fn_scriptlog "When update is complete ${servicename} will start"
sleep 1 sleep 1
fi fi

2
functions/fn_serverconfig

@ -116,7 +116,7 @@ echo "setting WebAdmin username and password."
sed -i 's/AdminName=/AdminName=admin/g' "${systemdir}/${ini}" sed -i 's/AdminName=/AdminName=admin/g' "${systemdir}/${ini}"
sed -i 's/AdminPassword=/AdminPassword=admin/g' "${systemdir}/${ini}" sed -i 's/AdminPassword=/AdminPassword=admin/g' "${systemdir}/${ini}"
sleep 1 sleep 1
echo "enabling WebAdmin" echo "enabling WebAdmin."
sed -i 's/bEnabled=False/bEnabled=True/g' "${systemdir}/${ini}" sed -i 's/bEnabled=False/bEnabled=True/g' "${systemdir}/${ini}"
if [ "${gamename}" == "Unreal Tournament 2004" ]; then if [ "${gamename}" == "Unreal Tournament 2004" ]; then
sleep 1 sleep 1

4
functions/fn_serverdirectory

@ -2,7 +2,7 @@
# LGSM fn_serverdirectory function # LGSM fn_serverdirectory function
# Author: Daniel Gibbs # Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk # Website: http://danielgibbs.co.uk
# Version: 241214 # Version: 010115
echo "" echo ""
echo "Server Directory" echo "Server Directory"
@ -11,7 +11,7 @@ echo ""
pwd pwd
echo "" echo ""
if [ -d "${filesdir}" ]; then if [ -d "${filesdir}" ]; then
echo -e "\e[0;31mWARNING!\e[0;39m A server is already installed here" fn_printwarningnl "A server is already installed here."
fi fi
while true; do while true; do
read -p "Continue [y/N]" yn read -p "Continue [y/N]" yn

30
functions/fn_serverquery

@ -2,10 +2,12 @@
# LGSM fn_serverquery function # LGSM fn_serverquery function
# Author: Daniel Gibbs # Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk # Website: http://danielgibbs.co.uk
# Version: 231214 # Version: 010115
# uses gsquery.py to directly query the server # Description: uses gsquery.py to directly query the server.
# detects if the server locks up # Detects if the server has frozen.
local modulename="Monitor"
if [ -f gsquery.py ]; then if [ -f gsquery.py ]; then
if [ "${engine}" == "unreal" ]||[ "${engine}" == "unreal2" ]; then if [ "${engine}" == "unreal" ]||[ "${engine}" == "unreal2" ]; then
gameport=$(grep Port= "${systemdir}/${ini}"|grep -v Master|grep -v LAN|grep -v Proxy|grep -v Listen|tr -d '\r'|tr -cd [:digit:]) gameport=$(grep Port= "${systemdir}/${ini}"|grep -v Master|grep -v LAN|grep -v Proxy|grep -v Listen|tr -d '\r'|tr -cd [:digit:])
@ -19,21 +21,21 @@ if [ -f gsquery.py ]; then
gameport=$(grep ServerPort "${servercfgfullpath}"|tr -cd [:digit:]) gameport=$(grep ServerPort "${servercfgfullpath}"|tr -cd [:digit:])
port=$((${gameport} + 1)) port=$((${gameport} + 1))
fi fi
fn_printinfo "Monitoring ${servicename}: Detected gsquery.py" fn_printinfo "Detected gsquery.py"
fn_scriptlog "Detected gsquery.py" fn_scriptlog "Detected gsquery.py"
sleep 1 sleep 1
fn_printdots "Monitoring ${servicename}: Querying port: ${ip}:${port} : QUERYING" fn_printdots "Querying port: ${ip}:${port} : QUERYING"
fn_scriptlog "Querying port: ${ip}:${port} : QUERYING" fn_scriptlog "Querying port: ${ip}:${port} : QUERYING"
sleep 1 sleep 1
serverquery=$(./gsquery.py -a ${ip} -p ${port} -e ${engine} 2>&1) serverquery=$(./gsquery.py -a ${ip} -p ${port} -e ${engine} 2>&1)
exitcode=$? exitcode=$?
if [ "${exitcode}" == "1" ]||[ "${exitcode}" == "2" ]||[ "${exitcode}" == "3" ]||[ "${exitcode}" == "4" ]; then if [ "${exitcode}" == "1" ]||[ "${exitcode}" == "2" ]||[ "${exitcode}" == "3" ]||[ "${exitcode}" == "4" ]; then
fn_printfail "Monitoring ${servicename}: Querying port: ${ip}:${port} : ${serverquery}" fn_printfail "Querying port: ${ip}:${port} : ${serverquery}"
fn_scriptlog "Querying port: ${ip}:${port} : ${serverquery}"
sleep 1 sleep 1
echo -en "\n" echo -en "\n"
fn_scriptlog "Querying port: ${ip}:${port} : ${serverquery}"
if [[ -z "${secondquery}" ]]; then if [[ -z "${secondquery}" ]]; then
fn_printinfo "Monitoring ${servicename}: Waiting 30 seconds to re-query" fn_printinfo "Waiting 30 seconds to re-query"
fn_scriptlog "Waiting 30 seconds to re-query" fn_scriptlog "Waiting 30 seconds to re-query"
sleep 30 sleep 30
secondquery=1 secondquery=1
@ -48,14 +50,14 @@ if [ -f gsquery.py ]; then
fn_restartserver fn_restartserver
exit exit
elif [ "${exitcode}" == "0" ]; then elif [ "${exitcode}" == "0" ]; then
fn_printok "Monitoring ${servicename}: Querying port: ${ip}:${port} : OK" fn_printok "Querying port: ${ip}:${port} : OK"
fn_scriptlog "Querying port: ${ip}:${port} : OK" fn_scriptlog "Querying port: ${ip}:${port} : OK"
sleep 1 sleep 1
echo -en "\n" echo -en "\n"
exit exit
elif [ "${exitcode}" == "126" ]; then elif [ "${exitcode}" == "126" ]; then
fn_printfail "Monitoring ${servicename}: Querying port: ${ip}:${port} : ERROR: ./gsquery.py: Permission denied" fn_printfail "Querying port: ${ip}:${port} : ERROR: ./gsquery.py: Permission denied"
fn_scriptlog "Querying port: ${ip}:${port} : ./gsquery.py: Permission denied" fn_scriptlog "Querying port: ${ip}:${port} : ERROR: ./gsquery.py: Permission denied"
sleep 1 sleep 1
echo -en "\n" echo -en "\n"
echo "Attempting to resolve automatically" echo "Attempting to resolve automatically"
@ -64,15 +66,15 @@ if [ -f gsquery.py ]; then
if [ "${exitcode}" == "0" ]; then if [ "${exitcode}" == "0" ]; then
fn_serverquery fn_serverquery
else else
echo -en "\nUnable to resolve automatically. Please manually fix permissions\n" fn_printfailure "Unable to resolve automatically. Please manually fix permissions.\n"
owner=$(ls -al gsquery.py|awk '{ print $3 }') owner=$(ls -al gsquery.py|awk '{ print $3 }')
echo "As user ${owner} or root run the following command" echo "As user ${owner} or root run the following command."
whoami=$(whoami) whoami=$(whoami)
echo -en "\nchown ${whoami}:${whoami} gsquery.py\n\n" echo -en "\nchown ${whoami}:${whoami} gsquery.py\n\n"
exit exit
fi fi
else else
fn_printfail "Monitoring ${servicename}: Querying port: ${ip}:${port} : UNKNOWN ERROR" fn_printfail "Querying port: ${ip}:${port} : UNKNOWN ERROR"
fn_scriptlog "Querying port: ${ip}:${port} : UNKNOWN ERROR" fn_scriptlog "Querying port: ${ip}:${port} : UNKNOWN ERROR"
sleep 1 sleep 1
echo -en "\n" echo -en "\n"

17
functions/fn_startserver

@ -2,8 +2,11 @@
# LGSM fn_startserver function # LGSM fn_startserver function
# Author: Daniel Gibbs # Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk # Website: http://danielgibbs.co.uk
# Version: 071214 # Version: 010115
# Description: Starts the server.
modulename="Starting"
fn_rootcheck fn_rootcheck
fn_syscheck fn_syscheck
fn_autoip fn_autoip
@ -22,11 +25,11 @@ if [ "${tmuxwc}" -eq 0 ]; then
mv "${scriptlog}" "${scriptlogdate}" mv "${scriptlog}" "${scriptlogdate}"
mv "${consolelog}" "${consolelogdate}" mv "${consolelog}" "${consolelogdate}"
fi fi
fn_printdots "Starting ${servicename}: ${servername}" fn_printdots "${servername}"
fn_scriptlog "Starting ${servername}" fn_scriptlog "${servername}"
sleep 1 sleep 1
if [ "${tmuxwc}" -eq 1 ]; then if [ "${tmuxwc}" -eq 1 ]; then
fn_printinfo "Starting ${servicename}: ${servername} is already running" fn_printinfo "${servername} is already running"
fn_scriptlog "${servername} is already running" fn_scriptlog "${servername} is already running"
sleep 1 sleep 1
echo -en "\n" echo -en "\n"
@ -46,15 +49,15 @@ fi
sleep 1 sleep 1
tmuxwc=$(tmux list-sessions 2>&1|awk '{print $1}'|grep -Ec "^${servicename}:") tmuxwc=$(tmux list-sessions 2>&1|awk '{print $1}'|grep -Ec "^${servicename}:")
if [ "${tmuxwc}" -eq 0 ]; then if [ "${tmuxwc}" -eq 0 ]; then
fn_printfailnl "Starting ${servicename}: Failed to start ${servername}" fn_printfailnl "Unable to start ${servername}"
fn_scriptlog "Unable to start ${servername}"
echo -en " Check log files: ${rootdir}/log" echo -en " Check log files: ${rootdir}/log"
fn_scriptlog "failed to start ${servername}"
if [ -a "${scriptlogdir}/.${servicename}-tmux-error.tmp" ]; then if [ -a "${scriptlogdir}/.${servicename}-tmux-error.tmp" ]; then
fn_scriptlog "tmux returned the following error" fn_scriptlog "tmux returned the following error"
cat "${scriptlogdir}/.${servicename}-tmux-error.tmp" >> "${scriptlog}" cat "${scriptlogdir}/.${servicename}-tmux-error.tmp" >> "${scriptlog}"
fi fi
else else
fn_printok "Starting ${servicename}: ${servername}" fn_printok "${servername}"
fn_scriptlog "Started ${servername}" fn_scriptlog "Started ${servername}"
fi fi
rm "${scriptlogdir}/.${servicename}-tmux-error.tmp" rm "${scriptlogdir}/.${servicename}-tmux-error.tmp"

6
functions/fn_steaminstall

@ -2,7 +2,7 @@
# LGSM fn_steaminstall function # LGSM fn_steaminstall function
# Author: Daniel Gibbs # Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk # Website: http://danielgibbs.co.uk
# Version: 241214 # Version: 281214
fn_steaminstallcommand(){ fn_steaminstallcommand(){
echo "0x402" > .fn_steaminstall.tmp echo "0x402" > .fn_steaminstall.tmp
@ -10,11 +10,11 @@ while [ "$(grep -c 0x402 .fn_steaminstall.tmp)" -ge "1" ]; do
counter=$((counter+1)) counter=$((counter+1))
if [ "${counter}" -le "10" ]; then if [ "${counter}" -le "10" ]; then
if [ "${counter}" -ge "2" ]; then if [ "${counter}" -ge "2" ]; then
echo -e "\e[0;31mWarning!\e[0;39m SteamCMD did not complete the download, retrying: Attempt ${counter}" fn_printwarningnl "SteamCMD did not complete the download, retrying: Attempt ${counter}"
fi fi
./steamcmd.sh +login "${steamuser}" "${steampass}" +force_install_dir "${filesdir}" +app_update "${appid}" +quit |tee .fn_steaminstall.tmp ./steamcmd.sh +login "${steamuser}" "${steampass}" +force_install_dir "${filesdir}" +app_update "${appid}" +quit |tee .fn_steaminstall.tmp
elif [ "${counter}" -ge "11" ]; then elif [ "${counter}" -ge "11" ]; then
echo -e "\e[0;31mFailure!\e[0;39m SteamCMD did not complete the download, too many retrys" fn_printfailurenl "SteamCMD did not complete the download, too many retrys"
break break
fi fi
done done

13
functions/fn_stopserver

@ -2,20 +2,23 @@
# LGSM fn_stopserver function # LGSM fn_stopserver function
# Author: Daniel Gibbs # Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk # Website: http://danielgibbs.co.uk
# Version: 011214 # Version: 010115
# Description: Stops the server.
modulename="Stopping"
fn_rootcheck fn_rootcheck
fn_syscheck fn_syscheck
pid=$(tmux list-sessions 2>&1|awk '{print $1}'|grep -Ec "^${servicename}:") pid=$(tmux list-sessions 2>&1|awk '{print $1}'|grep -Ec "^${servicename}:")
fn_printdots "Stopping ${servicename}: ${servername}" fn_printdots "${servername}"
fn_scriptlog "Stopping ${servername}" fn_scriptlog "${servername}"
sleep 1 sleep 1
if [ "${pid}" == "0" ]; then if [ "${pid}" == "0" ]; then
fn_printfail "Stopping ${servicename}: ${servername} is already stopped" fn_printfail "${servername} is already stopped"
fn_scriptlog "${servername} is already stopped" fn_scriptlog "${servername} is already stopped"
else else
tmux kill-session -t ${servicename} tmux kill-session -t ${servicename}
fn_printok "Stopping ${servicename}: ${servername}" fn_printok "${servername}"
fn_scriptlog "Stopped ${servername}" fn_scriptlog "Stopped ${servername}"
fi fi
# Remove lock file # Remove lock file

11
functions/fn_updateserver

@ -2,15 +2,18 @@
# LGSM fn_updateserver function # LGSM fn_updateserver function
# Author: Daniel Gibbs # Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk # Website: http://danielgibbs.co.uk
# Version: 241214 # Version: 010115
# Description: Runs a server update.
local modulename="Update"
fn_rootcheck fn_rootcheck
fn_syscheck fn_syscheck
fn_printdots "Updating ${servicename}: ${servername}" fn_printdots "Updating ${servername}"
sleep 1
fn_printok "Updating ${servicename}: ${servername}"
sleep 1 sleep 1
fn_printok "Updating ${servername}"
fn_scriptlog "Updating ${servername}" fn_scriptlog "Updating ${servername}"
sleep 1
cd "${rootdir}" cd "${rootdir}"
cd "steamcmd" cd "steamcmd"
./steamcmd.sh +login "${steamuser}" "${steampass}" +force_install_dir "${filesdir}" +app_update "${appid}" +quit|tee -a "${scriptlog}" ./steamcmd.sh +login "${steamuser}" "${steampass}" +force_install_dir "${filesdir}" +app_update "${appid}" +quit|tee -a "${scriptlog}"

12
functions/fn_validateserver

@ -2,8 +2,11 @@
# LGSM fn_validateserver function # LGSM fn_validateserver function
# Author: Daniel Gibbs # Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk # Website: http://danielgibbs.co.uk
# Version: 241214 # Version: 010115
# Description: Runs a server validation.
local modulename="Validate"
fn_rootcheck fn_rootcheck
fn_syscheck fn_syscheck
fn_printwarn "Validating may overwrite some customised files." fn_printwarn "Validating may overwrite some customised files."
@ -12,11 +15,12 @@ echo -en "\n"
echo -en "https://developer.valvesoftware.com/wiki/SteamCMD#Validate" echo -en "https://developer.valvesoftware.com/wiki/SteamCMD#Validate"
sleep 5 sleep 5
echo -en "\n" echo -en "\n"
fn_printdots "Validating ${servicename}: ${servername}" fn_printdots "Checking server files"
sleep 1 sleep 1
fn_printok "Validating ${servicename}: ${servername}" fn_printok "Checking server files"
fn_scriptlog "Checking server files"
sleep 1 sleep 1
fn_scriptlog "Validating ${servername}"
cd "${rootdir}" cd "${rootdir}"
cd "steamcmd" cd "steamcmd"
./steamcmd.sh +login "${steamuser}" "${steampass}" +force_install_dir "${filesdir}" +app_update "${appid}" validate +quit|tee -a "${scriptlog}" ./steamcmd.sh +login "${steamuser}" "${steampass}" +force_install_dir "${filesdir}" +app_update "${appid}" validate +quit|tee -a "${scriptlog}"
fn_scriptlog "Checking complete"

80
functions/fn_versioncheck

@ -2,37 +2,49 @@
# LGSM fn_versioncheck function # LGSM fn_versioncheck function
# Author: Daniel Gibbs # Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk # Website: http://danielgibbs.co.uk
# Version: 231214 # Version: 010115
# Description: Checks if a server update is available.
modulename="Update"
fn_steamcmdcheck(){ fn_steamcmdcheck(){
# Checks for server update from SteamCMD # Checks for server update from SteamCMD
fn_printdots "Checking ${servicename}: Checking for updates via SteamCMD" fn_printdots "Checking for update: SteamCMD"
fn_scriptlog "Checking for update: SteamCMD"
installedversion=$(grep buildid "${appmanifestfile}" | tr '[:blank:]"' ' ' | tr -s ' ' | cut -d\ -f3) installedversion=$(grep buildid "${appmanifestfile}" | tr '[:blank:]"' ' ' | tr -s ' ' | cut -d\ -f3)
availableversion=$(steamcmd/steamcmd.sh +login "${steamuser}" "${steampass}" +app_info_print ${appid} +app_info_print ${appid} +quit | grep -EA 1000 "^\s+\"branches\"$" | grep -EA 5 "^\s+\"public\"$" | grep -m 1 -EB 10 "^\s+}$" | grep -E "^\s+\"buildid\"\s+" | tr '[:blank:]"' ' ' | tr -s ' ' | cut -d\ -f3) availableversion=$(steamcmd/steamcmd.sh +login "${steamuser}" "${steampass}" +app_info_print ${appid} +app_info_print ${appid} +quit | grep -EA 1000 "^\s+\"branches\"$" | grep -EA 5 "^\s+\"public\"$" | grep -m 1 -EB 10 "^\s+}$" | grep -E "^\s+\"buildid\"\s+" | tr '[:blank:]"' ' ' | tr -s ' ' | cut -d\ -f3)
sleep 1 sleep 1
if [ -z "${availableversion}" ]; then if [ -z "${availableversion}" ]; then
fn_printfail "Checking ${servicename}: Checking for updates via SteamCMD" fn_printfail "Checking for update: SteamCMD"
fn_scriptlog "Failure! Checking for update: SteamCMD"
sleep 1 sleep 1
fn_printfail "Checking ${servicename}: SteamCMD is not returning version info" fn_printfail "Checking for update: SteamCMD: Not returning version info"
fn_scriptlog "Failure! Checking for update: SteamCMD: Not returning version info"
sleep 2 sleep 2
else else
fn_printok "Checking ${servicename}: Checking for updates via SteamCMD" fn_printok "Checking for update: SteamCMD"
fn_scriptlog "Success! Checking for update: SteamCMD"
sleep 1 sleep 1
fi fi
if [ -z "${availableversion}" ]; then if [ -z "${availableversion}" ]; then
# Checks for server update from SteamDB.info if SteamCMD fails # Checks for server update from SteamDB.info if SteamCMD fails
echo "" echo ""
fn_printdots "Checking ${servicename}: Checking for updates via SteamDB.info" fn_printdots "Checking for update: SteamDB.info"
fn_scriptlog "Checking for update: SteamDB.info"
availableversion=$(wget -qO- "http://steamdb.info/api/GetRawDepots/?appid=${appid}" | sed 's/\\n/\n/g' | grep -EA 1000 "^\s+\[branches\]" | grep -EA 5 "^\s+\[public\]" | grep -m 1 -EB 10 "^\s+\)$" | grep -E "^\s+\[buildid\]\s+" | tr '[:blank:]"' ' ' | tr -s ' ' | cut -d\ -f4) availableversion=$(wget -qO- "http://steamdb.info/api/GetRawDepots/?appid=${appid}" | sed 's/\\n/\n/g' | grep -EA 1000 "^\s+\[branches\]" | grep -EA 5 "^\s+\[public\]" | grep -m 1 -EB 10 "^\s+\)$" | grep -E "^\s+\[buildid\]\s+" | tr '[:blank:]"' ' ' | tr -s ' ' | cut -d\ -f4)
sleep 1 sleep 1
if [ -z "${availableversion}" ]; then if [ -z "${availableversion}" ]; then
fn_printfail "Checking ${servicename}: Checking for updates via SteamDB.info" fn_printfail "Checking for update: SteamDB.info"
fn_scriptlog "Failure! Checking for update: SteamDB.info"
sleep 1 sleep 1
fn_printfail "Checking ${servicename}: SteamDB.info is not returning version info" fn_printfail "Checking for update: SteamDB.info: Not returning version info"
fn_scriptlog "Failure! Checking for update: SteamDB.info: Not returning version info"
sleep 2 sleep 2
else else
fn_printok "Checking ${servicename}: Checking for updates via SteamDB.info" fn_printok "Checking for update via SteamDB.info"
fn_scriptlog "Success! Checking for update: SteamDB.info"
sleep 1 sleep 1
fi fi
fi fi
@ -50,13 +62,14 @@ if [ "${installedversion}" -ne "${availableversion}" ]; then
echo -e " https://steamdb.info/app/${appid}/" echo -e " https://steamdb.info/app/${appid}/"
sleep 1 sleep 1
echo "" echo ""
echo -ne "Applying update.\r" echo -en "Applying update.\r"
sleep 1 sleep 1
echo -ne "Applying update..\r" echo -en "Applying update..\r"
sleep 1 sleep 1
echo -ne "Applying update...\r" echo -en "Applying update...\r"
sleep 1 sleep 1
echo -ne "\n" echo -en "\n"
fn_scriptlog "Update available"
if [ ! -z "${norestart}" ]; then if [ ! -z "${norestart}" ]; then
fn_updateserver fn_updateserver
else else
@ -71,19 +84,22 @@ else
echo -e " Available version: \e[0;32m${availableversion}\e[0;39m" echo -e " Available version: \e[0;32m${availableversion}\e[0;39m"
echo -e " https://steamdb.info/app/${appid}/" echo -e " https://steamdb.info/app/${appid}/"
echo -e "" echo -e ""
fn_printok "No update available"
fn_scriptlog "No update available"
fi fi
} }
fn_logupdaterequest(){ fn_logupdaterequest(){
# Checks for server update requiests from server logs. # Checks for server update requests from server logs.
echo "" echo ""
fn_printdots "Checking ${servicename}: Checking server logs for update requests" fn_printdots "Checking server logs for update requests"
requestrestart=$(grep -sc "MasterRequestRestart" "${consolelog}") sleep 1
fn_printok "Checking server logs for update requests"
fn_scriptlog "Checking server logs for update requests"
sleep 1 sleep 1
requestrestart=$(grep -sc "MasterRequestRestart" "${consolelog}")
if [ "${requestrestart}" -ge "1" ]; then if [ "${requestrestart}" -ge "1" ]; then
fn_printok "Checking ${servicename}: Checking server logs for update requests" fn_printoknl "Server requesting update"
sleep 1
fn_printoknl "Checking ${servicename}: Server requesting update"
sleep 1 sleep 1
echo "" echo ""
echo -ne "Applying update.\r" echo -ne "Applying update.\r"
@ -101,9 +117,7 @@ if [ "${requestrestart}" -ge "1" ]; then
fn_startserver fn_startserver
fi fi
else else
fn_printok "Checking ${servicename}: Checking logs for update requests" fn_printok "No update request detected"
sleep 1
fn_printok "Checking ${servicename}: No update request detected"
sleep 1 sleep 1
fi fi
echo "" echo ""
@ -122,9 +136,10 @@ fn_appmanifestinfo
# This is an error is corrected below if required. # This is an error is corrected below if required.
if [ "${appmanifestfilewc}" -ge "2" ]; then if [ "${appmanifestfilewc}" -ge "2" ]; then
sleep 1 sleep 1
fn_printwarn "Checking ${servicename}: Multiple appmanifest_${appid}.acf files found" fn_printwarn "Multiple appmanifest_${appid}.acf files found"
fn_scriptlog "Warning! Multiple appmanifest_${appid}.acf files found"
sleep 2 sleep 2
fn_printdots "Checking ${servicename}: Removing x${appmanifestfilewc} appmanifest_${appid}.acf files" fn_printdots "Removing x${appmanifestfilewc} appmanifest_${appid}.acf files"
sleep 1 sleep 1
for appfile in ${appmanifestfile}; do for appfile in ${appmanifestfile}; do
rm "${appfile}" rm "${appfile}"
@ -132,7 +147,8 @@ if [ "${appmanifestfilewc}" -ge "2" ]; then
appmanifestfilewc1="${appmanifestfilewc}" appmanifestfilewc1="${appmanifestfilewc}"
fn_appmanifestinfo fn_appmanifestinfo
if [ "${appmanifestfilewc}" -ge "2" ]; then if [ "${appmanifestfilewc}" -ge "2" ]; then
fn_printfail "Checking ${servicename}: Unable to remove x${appmanifestfilewc} appmanifest_${appid}.acf files" fn_printfail "Unable to remove x${appmanifestfilewc} appmanifest_${appid}.acf files"
fn_scriptlog "Failure! Unable to remove x${appmanifestfilewc} appmanifest_${appid}.acf files"
sleep 1 sleep 1
echo "" echo ""
echo " Check user permissions" echo " Check user permissions"
@ -142,23 +158,27 @@ if [ "${appmanifestfilewc}" -ge "2" ]; then
exit exit
else else
sleep 1 sleep 1
fn_printok "Checking ${servicename}: Removed x${appmanifestfilewc1} appmanifest_${appid}.acf files" fn_printok "Removed x${appmanifestfilewc1} appmanifest_${appid}.acf files"
fn_scriptlog "Success! Removed x${appmanifestfilewc1} appmanifest_${appid}.acf files"
sleep 1 sleep 1
fn_printinfonl "Checking ${servicename}: Forcing update to correct issue" fn_printinfonl "Forcing update to correct issue"
fn_scriptlog "Forcing update to correct issue"
sleep 1 sleep 1
fn_updateserver fn_updateserver
fn_versioncheck fn_versioncheck
fi fi
elif [ "${appmanifestfilewc}" -eq "0" ]; then elif [ "${appmanifestfilewc}" -eq "0" ]; then
fn_printwarn "Checking ${servicename}: No appmanifest_${appid}.acf found" fn_printwarn "No appmanifest_${appid}.acf found"
fn_scriptlog "Warning! No appmanifest_${appid}.acf found"
sleep 2 sleep 2
fn_printinfonl "Checking ${servicename}: Forcing update to correct issue" fn_printinfonl "Forcing update to correct issue"
fn_scriptlog "Forcing update to correct issue"
sleep 1 sleep 1
fn_updateserver fn_updateserver
fn_logupdaterequest fn_logupdaterequest
fi fi
} }
fn_printdots "Checking ${servicename}: Checking for updates" fn_printdots "Checking for update"
fn_appmanifestcheck fn_appmanifestcheck
fn_steamcmdcheck fn_steamcmdcheck
Loading…
Cancel
Save