From 77829d393b1b7325d6e9468802d29e7323620b98 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Thu, 23 Jun 2016 20:31:40 +0100 Subject: [PATCH] altered to fatal error --- lgsm/functions/check_ip.sh | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/check_ip.sh b/lgsm/functions/check_ip.sh index 514949522..e532d2056 100644 --- a/lgsm/functions/check_ip.sh +++ b/lgsm/functions/check_ip.sh @@ -18,14 +18,18 @@ if [ "${gamename}" != "Teamspeak 3" ]; then if [ "${ip}" == "0.0.0.0" ]||[ "${ip}" == "" ]; then if [ "${getipwc}" -ge "2" ]; then - fn_print_warn "Multiple active network interfaces found.\n\n" + fn_print_fatal "Multiple active network interfaces found.\n\n" + fn_script_log_fatal "Multiple active network interfaces found." echo -en "Manually specify the IP you want to use within the ${selfname} script.\n" echo -en "Set ip=\"0.0.0.0\" to one of the following:\n" echo -en "${getip}\n" echo -en "" echo -en "https://gameservermanagers.com/network-interfaces\n" echo -en "" - exit 1 + 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." + fn_script_log_fatal "https://gameservermanagers.com/network-interfaces\n" + core_exit.sh else ip=${getip} fi