From 28cc7bfd8224a011c0c4e744ae6ee080baa3e4fd Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Mon, 19 Jun 2017 16:26:29 +0100 Subject: [PATCH] Updated message to reflect new LinuxGSM config location --- lgsm/functions/check_ip.sh | 6 +++++- lgsm/functions/check_steamcmd.sh | 11 +++++++++-- 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/lgsm/functions/check_ip.sh b/lgsm/functions/check_ip.sh index 622b617dd..ed37b6b25 100644 --- a/lgsm/functions/check_ip.sh +++ b/lgsm/functions/check_ip.sh @@ -39,7 +39,11 @@ if [ "${gamename}" != "TeamSpeak 3" ]&&[ "${gamename}" != "Mumble" ]&&[ "${travi echo -en "https://gameservermanagers.com/network-interfaces\n" echo -en "" fn_script_log_fatal "Multiple active network interfaces found." - fn_script_log_fatal "Manually specify the IP you want to use within the ${selfname} script." + if [ "${legacymode}" == "1" ] then + fn_script_log_fatal "Manually specify the IP you want to use within the ${selfname} script." + else + fn_script_log_fatal "Manually specify the IP you want to use within: ${configdirserver}." + fi fn_script_log_fatal "https://gameservermanagers.com/network-interfaces\n" core_exit.sh else diff --git a/lgsm/functions/check_steamcmd.sh b/lgsm/functions/check_steamcmd.sh index dc4f66b8b..eb9e256d4 100644 --- a/lgsm/functions/check_steamcmd.sh +++ b/lgsm/functions/check_steamcmd.sh @@ -18,10 +18,17 @@ fn_install_steamcmd(){ fn_check_steamcmd_user(){ # Checks if steamuser is setup. if [ "${steamuser}" == "username" ]; then - fn_print_fail_nl "Steam login not set. Update steamuser in ${selfname}" + if [ "${legacymode}" == "1" ] then + fn_print_fail_nl "Steam login not set. Update steamuser in ${selfname}" + else + fn_print_fail_nl "Steam login not set. Update steamuser in ${configdirserver}" + fi echo " * Change steamuser=\"username\" to a valid steam login." if [ -d "${lgsmlogdir}" ]; then - fn_script_log_fatal "Steam login not set. Update steamuser in ${selfname}" + if [ "${legacymode}" == "1" ] then + fn_script_log_fatal "Steam login not set. Update steamuser in ${selfname}" + else + fn_script_log_fatal "Steam login not set. Update steamuser in ${configdirserver}" fi core_exit.sh fi