From a9a76c98df7828f7ed9a60e1f1549488b96597fa Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Tue, 19 May 2015 17:36:35 +0100 Subject: [PATCH] now checks if steamuser is set to username * Now checks if the username has not been changed and warns * Altered warning message --- functions/fn_check_steamuser | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/functions/fn_check_steamuser b/functions/fn_check_steamuser index 29a3d72c4..1ca9553c7 100644 --- a/functions/fn_check_steamuser +++ b/functions/fn_check_steamuser @@ -1,11 +1,17 @@ #!/bin/bash -# LGSM fn_install_serverfiles function +# LGSM fn_check_steamuser function # Author: Daniel Gibbs # Website: http://gameservermanagers.com # Version: 160515 -if [ -z "${steamuser}" ]; then - fn_printwarningnl "SteamCMD user variable is not assigned in the main script! Resorting to anonymous login" - steamuser="anonymous" - steampass="" +if [ -z "${steamuser}" ]||[ "${steamuser}" == "username" ];; then + fn_printwarningnl "Steam Login not set. Using anonymous login." + fn_scriptlog "Steam Login not set. Using anonymous login." + 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