Browse Source

now checks if steamuser is set to username

* Now checks if the username has not been changed and warns
* Altered warning message
pull/388/head
Daniel Gibbs 10 years ago
parent
commit
a9a76c98df
  1. 16
      functions/fn_check_steamuser

16
functions/fn_check_steamuser

@ -1,11 +1,17 @@
#!/bin/bash #!/bin/bash
# LGSM fn_install_serverfiles function # LGSM fn_check_steamuser function
# Author: Daniel Gibbs # Author: Daniel Gibbs
# Website: http://gameservermanagers.com # Website: http://gameservermanagers.com
# Version: 160515 # Version: 160515
if [ -z "${steamuser}" ]; then if [ -z "${steamuser}" ]||[ "${steamuser}" == "username" ];; then
fn_printwarningnl "SteamCMD user variable is not assigned in the main script! Resorting to anonymous login" fn_printwarningnl "Steam Login not set. Using anonymous login."
steamuser="anonymous" fn_scriptlog "Steam Login not set. Using anonymous login."
steampass="" if [ "${steamuser}" == "username" ]; then
echo " * Change steamuser=\"username\" to a valid steam login."
fn_scriptlog "Change steamuser=\"username\" to a valid steam login."
fi
steamuser="anonymous"
steampass=""
sleep 2
fi fi

Loading…
Cancel
Save