Browse Source

Now using core_exit.sh

Updated to use new exit code system. I have added a wiki page with the
basics

https://github.com/dgibbs64/linuxgsm/wiki/LGSM-Exit-Codes

Corrected typos
pull/945/head
Daniel Gibbs 9 years ago
parent
commit
f022986832
  1. 32
      lgsm/functions/check_config.sh

32
lgsm/functions/check_config.sh

@ -18,20 +18,22 @@ if [ ! -e "${servercfgfullpath}" ]; then
sleep 2 sleep 2
fi fi
fi fi
if [ "${gamename}" == "Rust" ]; then if [ "${gamename}" == "Rust" ]; then
if [ -z "${rconpassword}" ]; then if [ -z "${rconpassword}" ]; then
fn_print_dots "" fn_print_dots ""
sleep 0.5 sleep 0.5
fn_print_warn_nl "RCON password not set!" fn_print_fail_nl "RCON password is not set!"
echo "This would lead to unexpected behavior. Aborting." echo " * Not setting an RCON password causes issues with ${gamename}"
fn_script_log_warn "No RCON Password set, exitting!" fn_script_log_fatal "RCON password is not set"
exit 1 fn_script_log_fatal "Not setting an RCON password causes issues with ${gamename}"
elif [ "${rconpassword}" == "CHANGE_ME" ]; then core_exit.sh
fn_print_dots "" elif [ "${rconpassword}" == "CHANGE_ME" ]; then
sleep 0.5 fn_print_dots ""
fn_print_warn_nl "Default RCON Password detected!" sleep 0.5
echo "Having CHANGE_ME as a passowrd is not very safe." fn_print_warn_nl "Default RCON Password detected!"
fn_script_log_warn "RCON Password is the default one!" echo " * Having ${rconpassword} as a password is not very safe."
sleep 2 fn_script_log_warn "Default RCON Password detected"
fi sleep 2
fi
fi fi

Loading…
Cancel
Save