瀏覽代碼

Merge pull request #1011 from 0xJacky/dev

fix(install): update Nginx UI service status check from "started" to "running"
Jacky 3 天之前
父節點
當前提交
3b674fc79f
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      install.sh

+ 1 - 1
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}"