Browse Source

Fixes removed spaces for Arma servername #1033

Feel the power of awk over sed !
Fixes #1033
pull/1037/merge
UltimateByte 9 years ago
committed by GitHub
parent
commit
18104545a0
  1. 2
      lgsm/functions/info_config.sh

2
lgsm/functions/info_config.sh

@ -152,7 +152,7 @@ fn_info_config_realvirtuality(){
serverpassword="${unavailable}"
slots="${zero}"
else
servername=$(grep "hostname" "${servercfgfullpath}" | grep -v "//" | sed 's/\<hostname\>//g' | tr -d '=\"; ')
servername=$(grep "hostname" "${servercfgfullpath}" | grep -v "//" | awk -F '"' '{print $2}')
adminpassword=$(grep "passwordAdmin" "${servercfgfullpath}" | grep -v "//" | sed 's/\passwordAdmin//g' | tr -d '=\"; ')
serverpassword=$(grep "password =" "${servercfgfullpath}" | grep -v "//" | sed 's/\password//g' | tr -d '=\"; ')
slots=$(grep "maxPlayers" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]')

Loading…
Cancel
Save