From 0082b1fb76c387966a587d48a4df20f239474832 Mon Sep 17 00:00:00 2001 From: midoks Date: Mon, 14 Nov 2022 19:20:11 +0800 Subject: [PATCH] Update mw.tpl --- scripts/init.d/mw.tpl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/init.d/mw.tpl b/scripts/init.d/mw.tpl index fc1aaadf5..06c4a7ac5 100755 --- a/scripts/init.d/mw.tpl +++ b/scripts/init.d/mw.tpl @@ -52,7 +52,7 @@ mw_start_panel() fi echo -e "\033[32mdone\033[0m" else - echo "Starting mw-panel... mw(pid $(echo $isStart)) already running" + echo "starting mw-panel... mw(pid $(echo $isStart)) already running" fi } @@ -61,7 +61,7 @@ mw_start_task() { isStart=$(ps aux |grep 'task.py'|grep -v grep|awk '{print $2}') if [ "$isStart" == '' ];then - echo -e "Starting mw-tasks... \c" + echo -e "starting mw-tasks... \c" cd $mw_path && python3 task.py >> ${mw_path}/logs/task.log 2>&1 & sleep 0.3 isStart=$(ps aux |grep 'task.py'|grep -v grep|awk '{print $2}')