Browse Source

fixed port for et

pull/1123/head
Daniel Gibbs 9 years ago
parent
commit
ce4934da06
  1. 3
      lgsm/functions/info_config.sh

3
lgsm/functions/info_config.sh

@ -189,7 +189,7 @@ fn_info_config_wolfensteinenemyterritory(){
servername="${unavailable}" servername="${unavailable}"
serverpassword="${unavailable}" serverpassword="${unavailable}"
slots="${zero}" slots="${zero}"
port="27960" port="${zero}"
else else
port=$(grep "net_port" "${servercfgfullpath}" | grep -v "//" | tr -cd '[:digit:]') port=$(grep "net_port" "${servercfgfullpath}" | grep -v "//" | tr -cd '[:digit:]')
rconpassword=$(grep "zmq_rcon_password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set zmq_rcon_password//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//g' -e '/^\//d' | xargs -0) rconpassword=$(grep "zmq_rcon_password" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set zmq_rcon_password//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//g' -e '/^\//d' | xargs -0)
@ -203,6 +203,7 @@ fn_info_config_wolfensteinenemyterritory(){
servername=${servername:-"NOT SET"} servername=${servername:-"NOT SET"}
serverpassword=${serverpassword:-"NOT SET"} serverpassword=${serverpassword:-"NOT SET"}
slots=${slots:-"0"} slots=${slots:-"0"}
port=${port:-"27960"}
ipconfigcheck=$(grep "set net_ip" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set net_ip//g' | tr -d '=\";,:' | xargs -0) ipconfigcheck=$(grep "set net_ip" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^\//d' -e 's/set net_ip//g' | tr -d '=\";,:' | xargs -0)
if [ -n "${ipconfigcheck}" ]; then if [ -n "${ipconfigcheck}" ]; then
ip="${ipconfigcheck}" ip="${ipconfigcheck}"

Loading…
Cancel
Save