From 294cfe5730427a4c61f5780933f62cdc42de71c1 Mon Sep 17 00:00:00 2001 From: Elizabeth Frazier Date: Tue, 22 Aug 2017 10:01:05 -0700 Subject: [PATCH] Supress core_exit.sh when multiple IPs detected only when running details command --- lgsm/functions/check_ip.sh | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/check_ip.sh b/lgsm/functions/check_ip.sh index 9bb8b1a59..9b7f4f5bd 100644 --- a/lgsm/functions/check_ip.sh +++ b/lgsm/functions/check_ip.sh @@ -22,7 +22,12 @@ if [ "${gamename}" != "TeamSpeak 3" ]&&[ "${gamename}" != "Mumble" ]&&[ "${travi multiple_ip=1 fn_print_dots "Check IP" sleep 1 - fn_print_warn "Check IP: Multiple active network interfaces found." + command_arg=$(ps -o command $$ | tail -n +2 | cut -d' ' -f3) + if [[ "${command_arg}" = "details" ]] || [[ "${command_arg}" = "dt" ]] ; then + fn_print_warn "Check IP: Multiple active network interfaces found." + else + fn_print_fail "Check IP: Multiple active network interfaces found." + fi sleep 1 echo -en "\n" if [ "${ipsetinconfig}" == "1" ]; then @@ -46,7 +51,9 @@ if [ "${gamename}" != "TeamSpeak 3" ]&&[ "${gamename}" != "Mumble" ]&&[ "${travi 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 + if [[ "${command_arg}" != "details" ]] && [[ "${command_arg}" != "dt" ]] ; then + core_exit.sh + fi else ip=${getip} fi