gameservergame-servergame-servershacktoberfestdedicated-game-serversgamelinuxgsmserverbashgaminglinuxmultiplayer-game-servershell
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
189 lines
5.8 KiB
189 lines
5.8 KiB
#!/bin/bash
|
|
# LGSM fn_update_check function
|
|
# Author: Daniel Gibbs
|
|
# Website: http://danielgibbs.co.uk
|
|
# Version: 210115
|
|
|
|
# Description: Checks if a server update is available.
|
|
|
|
local modulename="Update"
|
|
|
|
fn_steamcmdcheck(){
|
|
# Checks for server update from SteamCMD
|
|
fn_printdots "Checking for update: SteamCMD"
|
|
fn_scriptlog "Checking for update: SteamCMD"
|
|
sleep 1
|
|
currentbuild=$(grep buildid "${appmanifestfile}" | tr '[:blank:]"' ' ' | tr -s ' ' | cut -d\ -f3)
|
|
cd "${rootdir}/steamcmd"
|
|
availablebuild=$(./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)
|
|
if [ -z "${availablebuild}" ]; then
|
|
fn_printfail "Checking for update: SteamCMD"
|
|
fn_scriptlog "Failure! Checking for update: SteamCMD"
|
|
sleep 1
|
|
fn_printfail "Checking for update: SteamCMD: Not returning version info"
|
|
fn_scriptlog "Failure! Checking for update: SteamCMD: Not returning version info"
|
|
sleep 2
|
|
else
|
|
fn_printok "Checking for update: SteamCMD"
|
|
fn_scriptlog "Success! Checking for update: SteamCMD"
|
|
sleep 1
|
|
fi
|
|
|
|
if [ -z "${availablebuild}" ]; then
|
|
# Checks for server update from SteamDB.info if SteamCMD fails
|
|
echo ""
|
|
fn_printdots "Checking for update: SteamDB.info"
|
|
fn_scriptlog "Checking for update: SteamDB.info"
|
|
availablebuild=$(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
|
|
if [ -z "${availablebuild}" ]; then
|
|
fn_printfail "Checking for update: SteamDB.info"
|
|
fn_scriptlog "Failure! Checking for update: SteamDB.info"
|
|
sleep 1
|
|
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
|
|
else
|
|
fn_printok "Checking for update: SteamDB.info"
|
|
fn_scriptlog "Success! Checking for update: SteamDB.info"
|
|
sleep 1
|
|
fi
|
|
fi
|
|
if [ -z "${availablebuild}" ]; then
|
|
fn_logupdaterequest
|
|
fi
|
|
|
|
if [ "${currentbuild}" -ne "${availablebuild}" ]; then
|
|
echo -e "\n"
|
|
echo -e "Update available:"
|
|
sleep 1
|
|
echo -e " Current build: \e[0;31m${currentbuild}\e[0;39m"
|
|
echo -e " Available build: \e[0;32m${availablebuild}\e[0;39m"
|
|
echo -e ""
|
|
echo -e " https://steamdb.info/app/${appid}/"
|
|
sleep 1
|
|
echo ""
|
|
echo -en "Applying update.\r"
|
|
sleep 1
|
|
echo -en "Applying update..\r"
|
|
sleep 1
|
|
echo -en "Applying update...\r"
|
|
sleep 1
|
|
echo -en "\n"
|
|
fn_scriptlog "Update available"
|
|
fn_scriptlog "Current build: ${currentbuild}"
|
|
fn_scriptlog "Available build: ${availablebuild}"
|
|
fn_scriptlog "${currentbuild} > ${availablebuild}"
|
|
if [ ! -z "${norestart}" ]; then
|
|
fn_update_dl
|
|
else
|
|
fn_stop
|
|
fn_update_dl
|
|
fn_start
|
|
fi
|
|
else
|
|
echo -e "\n"
|
|
echo -e "No update available:"
|
|
echo -e " Current version: \e[0;32m${currentbuild}\e[0;39m"
|
|
echo -e " Available version: \e[0;32m${availablebuild}\e[0;39m"
|
|
echo -e " https://steamdb.info/app/${appid}/"
|
|
echo -e ""
|
|
fn_printoknl "No update available"
|
|
fn_scriptlog "Current build: ${currentbuild}"
|
|
fn_scriptlog "Available build: ${availablebuild}"
|
|
fi
|
|
}
|
|
|
|
fn_logupdaterequest(){
|
|
# Checks for server update requests from server logs.
|
|
echo ""
|
|
fn_printdots "Checking server logs for update requests"
|
|
sleep 1
|
|
fn_printok "Checking server logs for update requests"
|
|
fn_scriptlog "Checking server logs for update requests"
|
|
sleep 1
|
|
requestrestart=$(grep -sc "MasterRequestRestart" "${consolelog}")
|
|
if [ "${requestrestart}" -ge "1" ]; then
|
|
fn_printoknl "Server requesting update"
|
|
sleep 1
|
|
echo ""
|
|
echo -ne "Applying update.\r"
|
|
sleep 1
|
|
echo -ne "Applying update..\r"
|
|
sleep 1
|
|
echo -ne "Applying update...\r"
|
|
sleep 1
|
|
echo -ne "\n"
|
|
if [ ! -z "${norestart}" ]; then
|
|
fn_update_dl
|
|
else
|
|
fn_stop
|
|
fn_update_dl
|
|
fn_start
|
|
fi
|
|
else
|
|
fn_printok "No update request detected"
|
|
sleep 1
|
|
fi
|
|
echo ""
|
|
exit
|
|
}
|
|
|
|
|
|
fn_appmanifestinfo(){
|
|
appmanifestfile=$(find "${filesdir}" -type f -name "appmanifest_${appid}.acf")
|
|
appmanifestfilewc=$(find "${filesdir}" -type f -name "appmanifest_${appid}.acf"|wc -l)
|
|
}
|
|
|
|
fn_appmanifestcheck(){
|
|
fn_appmanifestinfo
|
|
# Multiple or no matching appmanifest files may sometimes be available.
|
|
# This is an error is corrected below if required.
|
|
if [ "${appmanifestfilewc}" -ge "2" ]; then
|
|
sleep 1
|
|
fn_printwarn "Multiple appmanifest_${appid}.acf files found"
|
|
fn_scriptlog "Warning! Multiple appmanifest_${appid}.acf files found"
|
|
sleep 2
|
|
fn_printdots "Removing x${appmanifestfilewc} appmanifest_${appid}.acf files"
|
|
sleep 1
|
|
for appfile in ${appmanifestfile}; do
|
|
rm "${appfile}"
|
|
done
|
|
appmanifestfilewc1="${appmanifestfilewc}"
|
|
fn_appmanifestinfo
|
|
if [ "${appmanifestfilewc}" -ge "2" ]; then
|
|
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
|
|
echo ""
|
|
echo " Check user permissions"
|
|
for appfile in ${appmanifestfile}; do
|
|
echo " ${appfile}"
|
|
done
|
|
exit
|
|
else
|
|
sleep 1
|
|
fn_printok "Removed x${appmanifestfilewc1} appmanifest_${appid}.acf files"
|
|
fn_scriptlog "Success! Removed x${appmanifestfilewc1} appmanifest_${appid}.acf files"
|
|
sleep 1
|
|
fn_printinfonl "Forcing update to correct issue"
|
|
fn_scriptlog "Forcing update to correct issue"
|
|
sleep 1
|
|
fn_update_dl
|
|
fn_update_check
|
|
fi
|
|
elif [ "${appmanifestfilewc}" -eq "0" ]; then
|
|
fn_printwarn "No appmanifest_${appid}.acf found"
|
|
fn_scriptlog "Warning! No appmanifest_${appid}.acf found"
|
|
sleep 2
|
|
fn_printinfonl "Forcing update to correct issue"
|
|
fn_scriptlog "Forcing update to correct issue"
|
|
sleep 1
|
|
fn_update_dl
|
|
fn_update_check
|
|
fi
|
|
}
|
|
|
|
fn_printdots "Checking for update"
|
|
fn_appmanifestcheck
|
|
fn_steamcmdcheck
|