diff --git a/run.sh b/run.sh index 0d609696..e59f7b45 100755 --- a/run.sh +++ b/run.sh @@ -22,7 +22,8 @@ if [ "$1" != "service" ] && [ "$1" != "status-check" ]; then for srvc in "${SERVICES2[@]}" do - echo -en "${NM_SERVICES[${srvc}]} " + if [[ "mysql,test" != *"${srvc}"* ]]; then $spc=" "; else $spc=""; fi + echo -en "${NM_SERVICES[${srvc}]} $spc" if [ $(pgrep ${srvc} | wc -l) -gt "0" ]; then echo -e "${idsCL[Green]}Running${idsCL[Default]}" else echo -e "${idsCL[Red]}Not Running${idsCL[Default]}"