Browse Source

added external IP to debug info

pull/1639/head
Daniel Gibbs 8 years ago
parent
commit
408db1a9f4
  1. 6
      lgsm/functions/command_debug.sh

6
lgsm/functions/command_debug.sh

@ -52,6 +52,12 @@ if [ -n "${glibcrequired}" ]; then
fi
# Server ip
echo -e "${blue}Server IP:\t${default}${ip}:${port}"
# External server ip
if [ -n "${extip}" ]; then
if [ "${ip}" != "${extip}" ]; then
echo -e "${blue}Internet IP:\t${default}${extip}:${port}"
fi
fi
# Server password
if [ -n "${serverpassword}" ]; then
echo -e "${blue}Server password:\t${default}${serverpassword}"

Loading…
Cancel
Save