Browse Source

check SteamCMD now using functions

split this file in to smaller functions and improved the look for the
installer
pull/707/head
Daniel Gibbs 9 years ago
parent
commit
ca1e4e1af6
  1. 121
      functions/check_steamcmd.sh

121
functions/check_steamcmd.sh

@ -2,64 +2,89 @@
# LGSM check_steamcmd.sh function # LGSM check_steamcmd.sh function
# Author: Daniel Gibbs # Author: Daniel Gibbs
# Website: http://gameservermanagers.com # Website: http://gameservermanagers.com
lgsm_version="281215" lgsm_version="160316"
# Description: Downloads SteamCMD on install and checks if missing before running functions that require SteamCMD # Description: Checks SteamCMD is installed and correct.
if [ "${gamename}" == "Unreal Tournament 99" ]||[ "${gamename}" == "Unreal Tournament 2004" ]||[ "${gamename}" == "Mumble" ]||[ "${gamename}" == "Teamspeak 3" ]; then fn_install_steamcmd(){
: # These servers do not require SteamCMD. Check is skipped. echo "Installing steamCMD"
if [ ! -d "${steamcmddir}" ]; then
mkdir -v "${steamcmddir}"
fi
curl=$(curl --fail -o "${steamcmddir}/steamcmd_linux.tar.gz" "http://media.steampowered.com/client/steamcmd_linux.tar.gz" 2>&1)
exitcode=$?
echo -e "downloading steamcmd_linux.tar.gz...\c"
if [ $exitcode -eq 0 ]; then
fn_printokeol
else else
# Checks steamuser is setup. fn_printfaileol
if [ "${steamuser}" == "username" ]; then echo "${curl}"
echo -e "${githuburl}\n"
exit $exitcode
fi
tar --verbose -zxf "${steamcmddir}/steamcmd_linux.tar.gz" -C "${steamcmddir}"
rm -v "${steamcmddir}/steamcmd_linux.tar.gz"
chmod +x "${steamcmddir}/steamcmd.sh"
echo ""
}
fn_check_steamcmd_user(){
# Checks steamuser is setup.
if [ "${steamuser}" == "username" ]; then
fn_printfailnl "Steam login not set. Update steamuser." fn_printfailnl "Steam login not set. Update steamuser."
echo " * Change steamuser=\"username\" to a valid steam login." echo " * Change steamuser=\"username\" to a valid steam login."
if [ -d ${scriptlogdir} ]; then if [ -d "${scriptlogdir}" ]; then
fn_scriptlog "edit ${selfname}. change steamuser=\"username\" to a valid steam login." fn_scriptlog "edit ${selfname}. change steamuser=\"username\" to a valid steam login."
exit 1 exit 1
fi fi
fi
# Anonymous user is set if steamuser is missing
if [ -z "${steamuser}" ]; then
fn_printwarnnl "Steam login not set. Using anonymous login."
if [ -d "${scriptlogdir}" ]; then
fn_scriptlog "Steam login not set. Using anonymous login."
fi fi
if [ -z "${steamuser}" ]; then steamuser="anonymous"
fn_printwarnnl "Steam login not set. Using anonymous login." steampass=""
if [ -d "${scriptlogdir}" ]; then sleep 2
fn_scriptlog "Steam login not set. Using anonymous login." fi
fi }
steamuser="anonymous"
steampass="" fn_check_steamcmd_sh(){
sleep 2 # Checks if SteamCMD exists when starting or updating a server.
fi # Installs if missing.
# Checks if SteamCMD exists when starting or updating a server. steamcmddir="${rootdir}/steamcmd"
# Re-installs if missing. if [ ! -f "${steamcmddir}/steamcmd.sh" ]; then
steamcmddir="${rootdir}/steamcmd" if [ "${function_selfname}" == "command_install.sh" ]; then
if [ ! -f "${steamcmddir}/steamcmd.sh" ]; then fn_install_steamcmd
else
fn_printwarnnl "SteamCMD is missing" fn_printwarnnl "SteamCMD is missing"
if [ -d "${scriptlogdir}" ]; then fn_scriptlog "SteamCMD is missing"
fn_scriptlog "SteamCMD is missing"
fi
sleep 1 sleep 1
if [ ! -d "${steamcmddir}" ]; then fn_install_steamcmd
mkdir -v "${steamcmddir}" fi
fi elif [ "${function_selfname}" == "command_install.sh" ]; then
curl=$(curl --fail -o "${steamcmddir}/steamcmd_linux.tar.gz" "http://media.steampowered.com/client/steamcmd_linux.tar.gz" 2>&1) fn_printinfomation "SteamCMD is already installed..."
exitcode=$? fn_printokeol
echo -e "downloading steamcmd_linux.tar.gz...\c"
if [ $exitcode -eq 0 ]; then
fn_printokeol
else
fn_printfaileol
echo "${curl}"
echo -e "${githuburl}\n"
exit $exitcode
fi
tar --verbose -zxf "${steamcmddir}/steamcmd_linux.tar.gz" -C "${steamcmddir}"
rm -v "${steamcmddir}/steamcmd_linux.tar.gz"
chmod +x "${steamcmddir}/steamcmd.sh"
fi
if [ "${function_selfname}" == "command_update.sh" ]||[ "${function_selfname}" == "command_validate.sh" ]; then
# Checks that steamcmd is working correctly and will prompt Steam Guard if required.
"${steamcmddir}"/steamcmd.sh +login "${steamuser}" "${steampass}" +quit
if [ $? -ne 0 ]; then
fn_printfailurenl "Error running SteamCMD"
fi
fi
fi fi
}
fn_check_steamcmd_guard(){
if [ "${function_selfname}" == "command_update.sh" ]||[ "${function_selfname}" == "command_validate.sh" ]; then
# Checks that steamcmd is working correctly and will prompt Steam Guard if required.
"${steamcmddir}"/steamcmd.sh +login "${steamuser}" "${steampass}" +quit
if [ $? -ne 0 ]; then
fn_printfailurenl "Error running SteamCMD"
fi
fi
}
if [ "${gamename}" == "Unreal Tournament 99" ]||[ "${gamename}" == "Unreal Tournament 2004" ]||[ "${gamename}" == "Mumble" ]||[ "${gamename}" == "Teamspeak 3" ]; then
: # These servers do not require SteamCMD. Check is skipped.
else
fn_check_steamcmd_user
fn_check_steamcmd_sh
fn_check_steamcmd_guard
fi
Loading…
Cancel
Save