From b6a7523b7502c8d3b8b98adc15a394d0c3364175 Mon Sep 17 00:00:00 2001 From: David Schroeder Date: Sun, 24 Jul 2022 19:26:28 -0500 Subject: [PATCH] Update mm-scripts.sh --- mm-scripts.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mm-scripts.sh b/mm-scripts.sh index 4ff6b26..98fdc1f 100755 --- a/mm-scripts.sh +++ b/mm-scripts.sh @@ -322,7 +322,7 @@ if [ ! -f /opt/mm.update.stop ]; then case $action in start | check) if [ -f /opt/mm.stop ] && [ "${action}" = "check" ]; then - echo -e "${idsCL[Yellow]}The system is currently stopped ${idsCL[LightCyan]}(You must run \"mm start\" to start services again)${idsCL[Default]}" + echo -e "${stopmsg}" # [ $VERBOSE = true ] && echo "$(date) - Not checking, system has been stopped" >> $logfile echo exit 1 @@ -335,7 +335,7 @@ if [ ! -f /opt/mm.update.stop ]; then restart) if [ -f /opt/mm.stop ]; then - echo -e "${idsCL[Yellow]}The system is currently stopped ${idsCL[LightCyan]}(You must run \"mm start\" to start services again)${idsCL[Default]}" + echo -e "${stopmsg}" echo exit 1 fi @@ -345,7 +345,7 @@ if [ ! -f /opt/mm.update.stop ]; then status) if [ -f /opt/mm.stop ]; then - echo -e "${idsCL[Yellow]}The system is currently stopped ${idsCL[LightCyan]}(You must run \"mm start\" to start services again)${idsCL[Default]}" + echo -e "${stopmsg}" echo fi MMSTATUS;;