Browse Source

Updated message to reflect new LinuxGSM config location

pull/1483/head
Daniel Gibbs 8 years ago
parent
commit
28cc7bfd82
  1. 4
      lgsm/functions/check_ip.sh
  2. 7
      lgsm/functions/check_steamcmd.sh

4
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."
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

7
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
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
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

Loading…
Cancel
Save