From ebe510dcd162c1158024b094d56fb30e59747c6a Mon Sep 17 00:00:00 2001 From: David Schroeder Date: Sun, 21 May 2023 08:40:27 -0500 Subject: [PATCH] update --- defaults.inc | 2 +- mm-scripts.sh | 9 ++++----- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/defaults.inc b/defaults.inc index 569e0e3..67b71cd 100755 --- a/defaults.inc +++ b/defaults.inc @@ -1,6 +1,6 @@ #!/usr/bin/env bash -VERS='3.8.222-05182023' +VERS='3.8.224-05182023' MMFOLDER="/opt/idssys/mediamanager" TMPFOLDER="${MMFOLDER}/.tmp" diff --git a/mm-scripts.sh b/mm-scripts.sh index 60c6e7c..b89bd56 100755 --- a/mm-scripts.sh +++ b/mm-scripts.sh @@ -730,11 +730,10 @@ GETVPNINFO(){ echo -e "${idsCL[Green]}VPN Connection Info${idsCL[Default]}" echo - msg="Server Network" - c=0; spc=''; spc1=$((${cw_spc}-${#msg})) - until [ $c = ${spc1} ]; do spc="${spc} "; c=`expr $c + 1`; done - echo -en "${idsCL[LightCyan]}${msg}${spc}${idsCL[White]}: ${idsCL[Green]}${VPN_SERVER}${idsCL[Default]}" - + msg="Server Network"; c=0; spc=''; spc1=$((${cw_spc}-${#msg})); until [ $c = ${spc1} ]; do spc="${spc} "; c=`expr $c + 1`; done + echo -e "${idsCL[LightCyan]}${msg}${spc}${idsCL[White]}: ${idsCL[Green]}${VPN_SERVER}${idsCL[Default]}" + msg="Server Address"; c=0; spc=''; spc1=$((${cw_spc}-${#msg})); until [ $c = ${spc1} ]; do spc="${spc} "; c=`expr $c + 1`; done + echo -e "${idsCL[LightCyan]}${msg}${spc}${idsCL[White]}: ${idsCL[Green]}${vpn_server_address}${idsCL[Default]}"