From 60d4e9c84eccc0e918299976d700c15bd1deae81 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Wed, 19 Oct 2016 19:05:26 +0200 Subject: [PATCH] Using awk for now fixes #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 0bc4b945b..00949c73f 100644 --- a/lgsm/functions/info_config.sh +++ b/lgsm/functions/info_config.sh @@ -325,8 +325,8 @@ fn_info_config_mumble(){ queryport="${port}" servername="Mumble" else - port=$(grep "port" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^;/d' -e 's/port//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') - ip=$(grep "host=" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^;/d' -e 's/host=//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//') + port=$(grep "port=" "${servercfgfullpath}" | awk -F "=" '{ print $2 }' ) + ip=$(grep "host=" "${servercfgfullpath}" | awk -F "=" '{ print $2 }' ) # Not Set port=${port:-"64738"}