Browse Source

first fix attempt for mumble ip

pull/1138/head
UltimateByte 9 years ago
committed by GitHub
parent
commit
c43ac02250
  1. 2
      lgsm/functions/info_config.sh

2
lgsm/functions/info_config.sh

@ -328,7 +328,7 @@ fn_info_config_mumble(){
queryport=${queryport:-"64738"}
servername="Mumble Port ${port}"
ip=$(cat "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^;/d' -e 's/voice_ip//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
ip=$(cat "${servercfgfullpath}" | grep "host=" | awk -F "=" { print $2 }' )
ipsetinconfig=1
ipinconfigvar="voice_ip"
fi

Loading…
Cancel
Save