| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- #!/bin/bash
- # LGSM check_steamcmd.sh function
- # Author: Daniel Gibbs
- # Website: http://gameservermanagers.com
- lgsm_version="281215"
- # Description: Downloads SteamCMD on install and checks if missing before running functions that require SteamCMD
- if [ "${gamename}" == "Unreal Tournament 99" ]||[ "${gamename}" == "Unreal Tournament 2004" ]||[ "${gamename}" == "Mumble" ]; then
- : # These servers do not require SteamCMD. Check is skipped.
- else
- # Checks steamuser is setup.
- if [ "${steamuser}" == "username" ]; then
- fn_printfailnl "Steam login not set. Update steamuser."
- echo " * Change steamuser=\"username\" to a valid steam login."
- if [ -d ${scriptlogdir} ]; then
- fn_scriptlog "edit ${selfname}. change steamuser=\"username\" to a valid steam login."
- exit 1
- fi
- fi
- 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
- steamuser="anonymous"
- steampass=""
- sleep 2
- fi
- # Checks if SteamCMD exists when starting or updating a server.
- # Re-installs if missing.
- steamcmddir="${rootdir}/steamcmd"
- if [ ! -f "${steamcmddir}/steamcmd.sh" ]; then
- fn_printwarnnl "SteamCMD is missing"
- fn_scriptlog "SteamCMD is missing"
- sleep 1
- 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
- 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 [ "${modulename}" == "Update" ]||[ "${modulename}" == "Validate" ]; 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
|