From 223f30b2e5775f4d84b1a3ee912b0a2d81f7fb1d Mon Sep 17 00:00:00 2001 From: David Schroeder Date: Tue, 29 Jan 2019 21:44:22 -0600 Subject: [PATCH] Update run.sh --- run.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/run.sh b/run.sh index cbc597b3..d1697c3a 100755 --- a/run.sh +++ b/run.sh @@ -14,7 +14,7 @@ if [ "$1" != "service" ] && [ "$1" != "status-check" ]; then echo "" echo -e "${idsCL[Yellow]} NodeMgmt - Galera/NGINX Node Management${idsCL[Default]} ${idsCL[DarkGray]}(ver-${VERS})${idsCL[Default]}" echo -e "${idsCL[Yellow]}-------------------------------------------------------------${idsCL[Default]}" - echo -e "Node hostname: ${idsST[Bold]}${idsCL[LightCyan]}${NODE_HOSTNAME}${idsCL[Default]}${idsST[Reset]}" + echo -e "Node hostname: ${idsST[Bold]}${idsCL[LightCyan]}${NODE_HOSTNAME}${idsCL[Default]}${idsST[Reset]}" if [ "${LOCAL_SERVICES}" != "" ]; then SERVICES=$( IFS=$','; echo "${LOCAL_SERVICES[*]}" ) else SERVICES=$( IFS=$','; echo "${NODE_SERVICES[*]}" ) fi @@ -22,7 +22,7 @@ if [ "$1" != "service" ] && [ "$1" != "status-check" ]; then for srvc in "${SERVICES2[@]}" do - echo -en "${NM_SERVICES[${srvc}]} " + echo -en "${NM_SERVICES[${srvc}]} " if [ $(pgrep ${srvc} | wc -l) -gt "0" ]; then echo -e "${idsCL[Green]}Running${idsCL[Default]}" else echo -e "${idsCL[Red]}Not Running${idsCL[Default]}"