From 07d8878171f8fa66d807010b3bc1e2c1a09d6e36 Mon Sep 17 00:00:00 2001 From: Elizabeth Frazier Date: Sun, 20 Aug 2017 11:54:25 -0700 Subject: [PATCH 1/2] Change multi-IP detection messgeing in check_ip.sh; Alow command_details.sh to continue running after multi-IP detection. --- lgsm/functions/check_ip.sh | 5 +++-- lgsm/functions/command_details.sh | 8 ++++++-- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/lgsm/functions/check_ip.sh b/lgsm/functions/check_ip.sh index 468ac529a..9bb8b1a59 100644 --- a/lgsm/functions/check_ip.sh +++ b/lgsm/functions/check_ip.sh @@ -19,9 +19,10 @@ if [ "${gamename}" != "TeamSpeak 3" ]&&[ "${gamename}" != "Mumble" ]&&[ "${travi info_config.sh if [ "${ip}" == "0.0.0.0" ]||[ "${ip}" == "" ]; then if [ "${getipwc}" -ge "2" ]; then - fn_print_dots "Check IP" + multiple_ip=1 + fn_print_dots "Check IP" sleep 1 - fn_print_fail "Check IP: Multiple active network interfaces found." + fn_print_warn "Check IP: Multiple active network interfaces found." sleep 1 echo -en "\n" if [ "${ipsetinconfig}" == "1" ]; then diff --git a/lgsm/functions/command_details.sh b/lgsm/functions/command_details.sh index 4e5eb2eca..8a4c59b14 100644 --- a/lgsm/functions/command_details.sh +++ b/lgsm/functions/command_details.sh @@ -116,8 +116,12 @@ fn_details_gameserver(){ fi # Server ip - echo -e "${blue}Server IP:\t${default}${ip}:${port}" - + if [ ${multiple_ip} == 1 ]; then + echo -e "${blue}Server IP:\t${default}NOT SET" + else + echo -e "${blue}Server IP:\t${default}${ip}:${port}" + fi + # Server password if [ -n "${serverpassword}" ]; then echo -e "${blue}Server password:\t${default}${serverpassword}" From 294cfe5730427a4c61f5780933f62cdc42de71c1 Mon Sep 17 00:00:00 2001 From: Elizabeth Frazier Date: Tue, 22 Aug 2017 10:01:05 -0700 Subject: [PATCH 2/2] 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