From a5d6018e9c4bf8be8a75aa20ae872f28f5983dd2 Mon Sep 17 00:00:00 2001 From: David Schroeder Date: Sun, 23 Jan 2022 15:32:40 -0600 Subject: [PATCH] Update mm-scripts.sh --- mm-scripts.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mm-scripts.sh b/mm-scripts.sh index 56bbc13..1591b57 100755 --- a/mm-scripts.sh +++ b/mm-scripts.sh @@ -117,7 +117,7 @@ MMSTATUS(){ 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 being services again)${idsCL[Default]}" + echo -e "${idsCL[Yellow]}The system is currently stopped ${idsCL[LightCyan]}(You must run \"mm start\" to start services again)${idsCL[Default]}" exit 0 fi touch /opt/mm.stop @@ -129,7 +129,7 @@ case $action in status) if [ -f /opt/mm.stop ]; then - echo -e "${idsCL[Yellow]}The system is currently stopped ${idsCL[LightCyan]}(You must run \"mm start\" to being services again)${idsCL[Default]}" + echo -e "${idsCL[Yellow]}The system is currently stopped ${idsCL[LightCyan]}(You must run \"mm start\" to start services again)${idsCL[Default]}" echo fi MMSTATUS;;