From 9d39b7607d3b6dc852d4108e590aab9ae15a4792 Mon Sep 17 00:00:00 2001 From: Jacky Date: Wed, 7 May 2025 03:27:07 +0000 Subject: [PATCH] fix(install): update Nginx UI service status check from "started" to "running" --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 15f7b70a..9de44bad 100644 --- a/install.sh +++ b/install.sh @@ -626,7 +626,7 @@ main() { rc-update add nginx-ui default sleep 1s - if rc-service nginx-ui status | grep -q "started"; then + if rc-service nginx-ui status | grep -q "running"; then echo "info: Started and added the Nginx UI service to default runlevel." else echo -e "${FontYellow}warning: Failed to start the Nginx UI service.${FontSuffix}"