Browse Source

corrections to mta ip=

pull/1268/head
Daniel Gibbs 8 years ago
parent
commit
f9da8c9a1e
  1. 5
      lgsm/functions/info_config.sh

5
lgsm/functions/info_config.sh

@ -613,7 +613,6 @@ fn_info_config_mta(){
serverpassword="${unavailable}"
maxplayers="${zero}"
else
ip=$(grep -m 1 "serverip" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/<serverip>//g' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//' | cut -f1 -d "<" | tr -cd '[:digit:]')
port=$(grep -m 1 "serverport" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/<serverport>//g' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//' | cut -f1 -d "<" | tr -cd '[:digit:]')
httpport=$(grep -m 1 "httpport" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/<httpport>//g' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//' | cut -f1 -d "<" | tr -cd '[:digit:]')
ase=$(grep -m 1 "ase" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/<ase>//g' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//' | cut -f1 -d "<" | tr -cd '[:digit:]')
@ -627,6 +626,10 @@ fn_info_config_mta(){
ase="Disabled"
fi
ip=$(grep -m 1 "serverip" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/<serverip>//g' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//' | cut -f1 -d "<" | tr -cd '[:digit:]')
ipsetinconfig=1
ipinconfigvar="serverip"
# Not Set
port=${port:-"NOT SET - Defaults to 22003"}
httpport=${httpport:-"NOT SET - Defaults to 22005"}

Loading…
Cancel
Save