From 05ee12038ce7faa9275a099dda8e5ce5c67d04df Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Tue, 18 Oct 2016 22:13:54 +0100 Subject: [PATCH] fixed ip for mumble #1130 --- lgsm/functions/info_config.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/info_config.sh b/lgsm/functions/info_config.sh index 7ea395dc0..dc7486c85 100644 --- a/lgsm/functions/info_config.sh +++ b/lgsm/functions/info_config.sh @@ -320,7 +320,7 @@ fn_info_config_mumble(){ queryport="${port}" servername="Mumble" else - port=$(grep "port=" "${servercfgfullpath}" | awk -F "=" '{ print $2 }' ) + port=$(grep "port" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^;/d' -e 's/port//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') queryport="${port}" # Not Set @@ -328,7 +328,7 @@ fn_info_config_mumble(){ queryport=${queryport:-"64738"} servername="Mumble Port ${port}" - ip=$(cat "${servercfgfullpath}" | grep "host=" | awk -F "=" { print $2 }' ) + ip=$(grep "host=" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^;/d' -e 's/host=//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') ipsetinconfig=1 ipinconfigvar="voice_ip" fi