From 57789b0c109a723be9250b1f60d9374674d57cdb Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 24 Dec 2014 20:34:59 +0000 Subject: [PATCH] Script now detects 0x402 error on SteamCMD https://github.com/dgibbs64/linuxgameservers/issues/235 --- functions/fn_steaminstall | 35 ++++++++++++++++++++++++++--------- 1 file changed, 26 insertions(+), 9 deletions(-) diff --git a/functions/fn_steaminstall b/functions/fn_steaminstall index a6d0f5c07..5efc342c4 100644 --- a/functions/fn_steaminstall +++ b/functions/fn_steaminstall @@ -2,24 +2,41 @@ # LGSM fn_steaminstall function # Author: Daniel Gibbs # Website: http://danielgibbs.co.uk -# Version: 011214 +# Version: 241214 +fn_steaminstallcommand(){ +echo "0x402" > .fn_steaminstall.tmp +while [ "$(grep -c 0x402 .fn_steaminstall.tmp)" -ge "1" ]; do + counter=$((counter+1)) + if [ "${counter}" -le "10" ]; then + if [ "${counter}" -ge "2" ]; then + echo -e "\e[0;31mWarning!\e[0;39m SteamCMD did not complete the download, retrying: Attempt ${counter}" + fi + ./steamcmd.sh +login "${steamuser}" "${steampass}" +force_install_dir "${filesdir}" +app_update "${appid}" +quit |tee .fn_steaminstall.tmp + elif [ "${counter}" -ge "11" ]; then + echo -e "\e[0;31mFailure!\e[0;39m SteamCMD did not complete the download, too many retrys" + break + fi +done +rm -f .fn_steaminstall.tmp +} + +echo "" echo "Installing ${gamename} Server" echo "=================================" sleep 1 mkdir -pv "${filesdir}" cd "${rootdir}/steamcmd" -STEAMEXE=steamcmd ./steamcmd.sh +login ${steamuser} "${steampass}" +force_install_dir "${filesdir}" +app_update ${appid} +quit -if [ -z ${autoinstall} ]; then +fn_steaminstallcommand +if [ -z "${autoinstall}" ]; then echo "" echo "=================================" while true; do - read -p "Was the install successful? [y/N]" yn + read -p "Was the install successful? [y/N]" yn case $yn in - [Yy]* ) break;; - [Nn]* ) fn_retryinstall;; - * ) echo "Please answer yes or no.";; + [Yy]* ) break;; + [Nn]* ) fn_retryinstall;; + * ) echo "Please answer yes or no.";; esac done -fi -echo "" \ No newline at end of file +fi \ No newline at end of file