Browse Source

fix service enabled

HgO 1 year ago
parent
commit
4bbf247394
1 changed files with 3 additions and 3 deletions
  1. 3 3
      conf/ynh-hotspot

+ 3 - 3
conf/ynh-hotspot

@@ -248,8 +248,8 @@ start)
     if is_running; then
         echo "Already started"
         exit 0
-    elif [[ "${service_enabled}" != "enabled" ]]; then
-        echo "Not starting because hotspod service is disabled"
+    elif [[ "${service_enabled}" -eq 0 ]]; then
+        echo "Not starting because hotspot service is disabled"
         exit 1
     fi
 
@@ -327,7 +327,7 @@ restart)
 status)
     exitcode=0
 
-    if [[ "${service_enabled}" != "enabled" ]]; then
+    if [[ "${service_enabled}" -eq 0 ]]; then
         echo "[FAIL] Hotspot Service disabled"
         exit 1
     fi