| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214 |
- #!/bin/bash
- # LinuxGSM update_steamcmd.sh function
- # Author: Daniel Gibbs
- # Website: https://linuxgsm.com
- # Description: Handles updating using SteamCMD.
- local commandname="UPDATE"
- local commandaction="Update"
- local function_selfname=$(basename "$(readlink -f "${BASH_SOURCE[0]}")")
- fn_update_steamcmd_dl(){
- info_config.sh
- # Detects if unbuffer command is available for 32 bit distributions only.
- info_distro.sh
- if [ "$(command -v stdbuf)" ]&&[ "${arch}" != "x86_64" ]; then
- unbuffer="stdbuf -i0 -o0 -e0"
- fi
- if [ -d "${steamcmddir}" ]; then
- cd "${steamcmddir}" || exit
- fi
- if [ "${appid}" == "90" ]; then
- ${unbuffer} ${steamcmdcommand} +login "${steamuser}" "${steampass}" +force_install_dir "${serverfiles}" +app_set_config 90 mod "${appidmod}" +app_update "${appid}" -beta "${branch}" +quit | tee -a "${lgsmlog}"
- else
- ${unbuffer} ${steamcmdcommand} +login "${steamuser}" "${steampass}" +force_install_dir "${serverfiles}" +app_update "${appid}" -beta "${branch}" +quit | tee -a "${lgsmlog}"
- fi
- fix.sh
- }
- fn_update_steamcmd_localbuild(){
- # Gets local build info.
- fn_print_dots "Checking for update: ${remotelocation}: checking local build"
- fn_appmanifest_check
- # Uses appmanifest to find local build.
- localbuild=$(grep buildid "${appmanifestfile}" | tr '[:blank:]"' ' ' | tr -s ' ' | cut -d\ -f3)
- # Removes appinfo.vdf as a fix for not always getting up to date version info from SteamCMD.
- if [ -f "${HOME}/Steam/appcache/appinfo.vdf" ]; then
- rm -f "${HOME}/Steam/appcache/appinfo.vdf"
- fi
- # Set branch for updateinfo.
- IFS=' ' read -ra branchsplits <<< "${branch}"
- if [ "${#branchsplits[@]}" -gt 1 ]; then
- branchname="${branchsplits[1]}"
- else
- branchname="public"
- fi
- fn_sleep_time
- }
- fn_update_steamcmd_remotebuild(){
- # Gets remote build info.
- if [ -d "${steamcmddir}" ]; then
- cd "${steamcmddir}" || exit
- fi
- remotebuild=$(${steamcmdcommand} +login "${steamuser}" "${steampass}" +app_info_update 1 +app_info_print "${appid}" +quit | sed '1,/branches/d' | sed "1,/${branchname}/d" | grep -m 1 buildid | tr -cd '[:digit:]')
- if [ "${installer}" != "1" ]; then
- fn_print_dots "Checking for update: ${remotelocation}: checking remote build"
- # Checks if remotebuild variable has been set.
- if [ -z "${remotebuild}" ]||[ "${remotebuild}" == "null" ]; then
- fn_print_fail "Checking for update: ${remotelocation}: checking remote build"
- fn_script_log_fatal "Checking remote build"
- core_exit.sh
- else
- fn_print_ok "Checking for update: ${remotelocation}: checking remote build"
- fn_script_log_pass "Checking remote build"
- fi
- else
- # Checks if remotebuild variable has been set.
- if [ -z "${remotebuild}" ]||[ "${remotebuild}" == "null" ]; then
- fn_print_failure "Unable to get remote build"
- fn_script_log_fatal "Unable to get remote build"
- core_exit.sh
- fi
- fi
- }
- fn_update_steamcmd_compare(){
- fn_print_dots "Checking for update: ${remotelocation}"
- if [ "${localbuild}" != "${remotebuild}" ]; then
- fn_print_ok_nl "Checking for update: ${remotelocation}"
- echo -en "\n"
- echo -e "Update available"
- echo -e "* Local build: ${red}${localbuild}${default}"
- echo -e "* Remote build: ${green}${remotebuild}${default}"
- if [ -v "${branch}" ]; then
- echo -e "* Branch: ${branch}"
- fi
- echo -e "https://steamdb.info/app/${appid}/"
- fn_script_log_info "Update available"
- fn_script_log_info "Local build: ${localbuild}"
- fn_script_log_info "Remote build: ${remotebuild}"
- if [ -v "${branch}" ]; then
- fn_script_log_info "Branch: ${branch}"
- fi
- fn_script_log_info "${localbuild} > ${remotebuild}"
- fn_sleep_time
- echo -en "\n"
- echo -en "applying update.\r"
- sleep 1
- echo -en "applying update..\r"
- sleep 1
- echo -en "applying update...\r"
- sleep 1
- echo -en "\n"
- unset updateonstart
- check_status.sh
- # If server stopped.
- if [ "${status}" == "0" ]; then
- fn_update_steamcmd_dl
- # If server started.
- else
- exitbypass=1
- command_stop.sh
- exitbypass=1
- fn_update_steamcmd_dl
- exitbypass=1
- command_start.sh
- fi
- alert="update"
- alert.sh
- else
- fn_print_ok_nl "Checking for update: ${remotelocation}"
- echo -en "\n"
- echo -e "No update available"
- echo -e "* Local build: ${green}${localbuild}${default}"
- echo -e "* Remote build: ${green}${remotebuild}${default}"
- if [ -v "${branch}" ]; then
- echo -e "* Branch: ${branch}"
- fi
- echo -e "https://steamdb.info/app/${appid}/"
- fn_script_log_info "No update available"
- fn_script_log_info "Local build: ${localbuild}"
- fn_script_log_info "Remote build: ${remotebuild}"
- if [ -v "${branch}" ]; then
- fn_script_log_info "Branch: ${branch}"
- fi
- fi
- }
- fn_appmanifest_info(){
- appmanifestfile=$(find "${serverfiles}" -type f -name "appmanifest_${appid}.acf")
- appmanifestfilewc=$(find "${serverfiles}" -type f -name "appmanifest_${appid}.acf" | wc -l)
- }
- fn_appmanifest_check(){
- fn_appmanifest_info
- # Multiple or no matching appmanifest files may sometimes be present.
- # This error is corrected if required.
- if [ "${appmanifestfilewc}" -ge "2" ]; then
- fn_sleep_time
- fn_print_error "Multiple appmanifest_${appid}.acf files found"
- fn_script_log_error "Multiple appmanifest_${appid}.acf files found"
- fn_print_dots "Removing x${appmanifestfilewc} appmanifest_${appid}.acf files"
- for appfile in ${appmanifestfile}; do
- rm "${appfile}"
- done
- appmanifestfilewc1="${appmanifestfilewc}"
- fn_appmanifest_info
- if [ "${appmanifestfilewc}" -ge "2" ]; then
- fn_print_fail "Unable to remove x${appmanifestfilewc} appmanifest_${appid}.acf files"
- fn_script_log_fatal "Unable to remove x${appmanifestfilewc} appmanifest_${appid}.acf files"
- echo -e " * Check user permissions"
- for appfile in ${appmanifestfile}; do
- echo -e " ${appfile}"
- done
- core_exit.sh
- else
- fn_print_ok "Removed x${appmanifestfilewc1} appmanifest_${appid}.acf files"
- fn_script_log_pass "Removed x${appmanifestfilewc1} appmanifest_${appid}.acf files"
- fn_print_info_nl "Forcing update to correct issue"
- fn_script_log_info "Forcing update to correct issue"
- fn_update_steamcmd_dl
- fi
- elif [ "${appmanifestfilewc}" -eq "0" ]; then
- fn_print_error_nl "No appmanifest_${appid}.acf found"
- fn_script_log_error "No appmanifest_${appid}.acf found"
- fn_print_info_nl "Forcing update to correct issue"
- fn_script_log_info "Forcing update to correct issue"
- fn_update_steamcmd_dl
- fn_appmanifest_info
- if [ "${appmanifestfilewc}" -eq "0" ]; then
- fn_print_fail_nl "Still no appmanifest_${appid}.acf found"
- fn_script_log_fatal "Still no appmanifest_${appid}.acf found"
- core_exit.sh
- fi
- fi
- }
- # The location where the builds are checked and downloaded.
- remotelocation="SteamCMD"
- check.sh
- if [ "${forceupdate}" == "1" ]; then
- # forceupdate bypasses update checks.
- check_status.sh
- if [ "${status}" != "0" ]; then
- exitbypass=1
- command_stop.sh
- fn_update_steamcmd_dl
- exitbypass=1
- command_start.sh
- else
- fn_update_steamcmd_dl
- fi
- else
- fn_update_steamcmd_localbuild
- fn_update_steamcmd_remotebuild
- fn_update_steamcmd_compare
- fi
|