From 973dabf1e1692c70f9e2055a31c42b02eb6f6be0 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Mon, 15 Oct 2018 23:25:41 +0100 Subject: [PATCH 1/4] If multiple IP addresses display as not set in details --- lgsm/functions/info_messages.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lgsm/functions/info_messages.sh b/lgsm/functions/info_messages.sh index 250b9d087..cbef4374c 100644 --- a/lgsm/functions/info_messages.sh +++ b/lgsm/functions/info_messages.sh @@ -139,7 +139,11 @@ fn_info_message_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 # External server ip if [ -n "${extip}" ]; then From 39f258a194dc8da68d12f8efedf5c0f7b491dcc9 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Mon, 15 Oct 2018 23:38:25 +0100 Subject: [PATCH 2/4] updated if statements --- lgsm/functions/check_ip.sh | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/lgsm/functions/check_ip.sh b/lgsm/functions/check_ip.sh index 87d664912..8db422bdc 100644 --- a/lgsm/functions/check_ip.sh +++ b/lgsm/functions/check_ip.sh @@ -6,7 +6,6 @@ # If multiple interfaces are detected the user will need to manually set using ip="0.0.0.0". local commandname="CHECK" -local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" if [ "${gamename}" != "TeamSpeak 3" ]&&[ "${gamename}" != "Mumble" ]&&[ "${travistest}" != "1" ]; then if [ ! -f "/bin/ip" ]; then @@ -29,7 +28,7 @@ if [ "${gamename}" != "TeamSpeak 3" ]&&[ "${gamename}" != "Mumble" ]&&[ "${travi fn_print_dots "Check IP" sleep 1 command_arg=$(ps -o command $$ | tail -n +2 | cut -d' ' -f3) - if [[ "${command_arg}" = "details" ]] || [[ "${command_arg}" = "dt" ]] ; then + if [ "${function_selfname}" == "command_details.sh" ]; then fn_print_warn "Check IP: Multiple active network interfaces found." else fn_print_fail "Check IP: Multiple active network interfaces found." @@ -62,7 +61,7 @@ if [ "${gamename}" != "TeamSpeak 3" ]&&[ "${gamename}" != "Mumble" ]&&[ "${travi echo -en "https://linuxgsm.com/network-interfaces\n" echo -en "" # Do not exit for details and postdetails commands - if [ "${commandaction}" != "Details" ]&&[ "${commandaction}" != "Postdetails" ]; then + if [ "${function_selfname}" != "command_details.sh" ]||[ "${function_selfname}" != "command_postdetails.sh" ]; then fn_script_log_fatal "https://linuxgsm.com/network-interfaces\n" core_exit.sh else @@ -84,7 +83,7 @@ if [ "${gamename}" != "TeamSpeak 3" ]&&[ "${gamename}" != "Mumble" ]&&[ "${travi fn_script_log_fatal "IP address not set in game config." fn_script_log_fatal "Specify the IP you want to bind within: ${servercfgfullpath}." fn_script_log_fatal "https://linuxgsm.com/network-interfaces\n" - if [[ "${command_arg}" != "details" ]] && [[ "${command_arg}" != "dt" ]] ; then + if [ "${command_arg}" != "details" ]&&[ "${command_arg}" != "dt" ] ; then core_exit.sh fi else From 944b9721ee7aa0e0a435caa10cf08d08f9b2f75f Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Mon, 15 Oct 2018 23:40:18 +0100 Subject: [PATCH 3/4] Adjusted messaging --- lgsm/functions/check_ip.sh | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/lgsm/functions/check_ip.sh b/lgsm/functions/check_ip.sh index 8db422bdc..59dda8052 100644 --- a/lgsm/functions/check_ip.sh +++ b/lgsm/functions/check_ip.sh @@ -24,14 +24,10 @@ if [ "${gamename}" != "TeamSpeak 3" ]&&[ "${gamename}" != "Mumble" ]&&[ "${travi sleep 0.5 # Multiple interfaces if [ "${getipwc}" -ge "2" ]; then - multiple_ip=1 - fn_print_dots "Check IP" - sleep 1 - command_arg=$(ps -o command $$ | tail -n +2 | cut -d' ' -f3) if [ "${function_selfname}" == "command_details.sh" ]; then - fn_print_warn "Check IP: Multiple active network interfaces found." + fn_print_warn "Check IP: Multiple IP addresses found." else - fn_print_fail "Check IP: Multiple active network interfaces found." + fn_print_fail "Check IP: Multiple IP addresses found." fi sleep 0.5 echo -en "\n" From e9a4ff485364ad83e44e1190d8878f86308fb970 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Mon, 15 Oct 2018 23:41:20 +0100 Subject: [PATCH 4/4] updated if --- lgsm/functions/check_ip.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/check_ip.sh b/lgsm/functions/check_ip.sh index 59dda8052..ba2d472c1 100644 --- a/lgsm/functions/check_ip.sh +++ b/lgsm/functions/check_ip.sh @@ -79,7 +79,7 @@ if [ "${gamename}" != "TeamSpeak 3" ]&&[ "${gamename}" != "Mumble" ]&&[ "${travi fn_script_log_fatal "IP address not set in game config." fn_script_log_fatal "Specify the IP you want to bind within: ${servercfgfullpath}." fn_script_log_fatal "https://linuxgsm.com/network-interfaces\n" - if [ "${command_arg}" != "details" ]&&[ "${command_arg}" != "dt" ] ; then + if [ "${function_selfname}" != "command_details.sh" ];then core_exit.sh fi else