Browse Source

Change multi-IP detection messgeing in check_ip.sh; Alow command_details.sh to continue running after multi-IP detection.

pull/1590/head
Elizabeth Frazier 8 years ago
parent
commit
07d8878171
  1. 5
      lgsm/functions/check_ip.sh
  2. 8
      lgsm/functions/command_details.sh

5
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

8
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}"

Loading…
Cancel
Save