From becd0686375edcf941b843fab9097716336c67e1 Mon Sep 17 00:00:00 2001 From: Debian Date: Sat, 6 Jun 2026 17:05:01 +0200 Subject: [PATCH] =?UTF-8?q?fix(ui):=20freeradius=20+=20kea-dhcp4=20in=20Se?= =?UTF-8?q?rvice-Status-Grid=20aufnehmen=20=E2=80=94=20v1.2.98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Das Dashboard-Service-Grid (servicesToCheck in system.go) listete weder freeradius (RADIUS, v1.2.93) noch kea-dhcp4-server (DHCP, v1.2.92). Beide sind via Depends installiert + default-disabled → erscheinen jetzt als 'Inaktiv' bis aktiviert. systemctl show liefert für disabled Units sauber inactive, kein Fehler. Co-Authored-By: Claude Opus 4.8 (1M context) --- VERSION | 2 +- internal/handlers/system.go | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 1af304e..f8af30f 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.2.97 \ No newline at end of file +1.2.98 \ No newline at end of file diff --git a/internal/handlers/system.go b/internal/handlers/system.go index c8c52e3..a1ac24a 100644 --- a/internal/handlers/system.go +++ b/internal/handlers/system.go @@ -194,6 +194,8 @@ var servicesToCheck = []struct{ Label, Unit string }{ {"unbound", "unbound"}, {"chrony", "chrony"}, {"squid", "squid"}, + {"kea-dhcp4", "kea-dhcp4-server"}, + {"freeradius", "freeradius"}, {"postgresql", "postgresql"}, {"crowdsec", "crowdsec"}, {"crowdsec-firewall-bouncer", "crowdsec-firewall-bouncer"},