diff --git a/routlin/status.py b/routlin/status.py index c00403c..d2f95c5 100644 --- a/routlin/status.py +++ b/routlin/status.py @@ -173,7 +173,7 @@ def check_services(data): has_ddns = any(p.get("enabled") for p in data.get("ddns", {}).get("providers", [])) exp_ddns_active = "active" if has_ddns else "inactive" - exp_ddns_enabled = "enabled" if has_ddns else "disabled" + exp_ddns_enabled = "enabled" if has_ddns else "not-found" units.append({"id": f"{DDNS_TIMER_NAME}.timer", "name": f"{DDNS_TIMER_NAME}.timer", "expected_active": exp_ddns_active, "expected_enabled": exp_ddns_enabled})