From 6200c517c3b3ce95c5f2ba523fc9b911dbc2af51 Mon Sep 17 00:00:00 2001 From: oidq Date: Wed, 20 May 2026 18:48:47 +0200 Subject: [PATCH] fix(systemd): report READY=1 after reload SystemD would report maddy in "reloading (reload-notify)" state even after successful reload. It should send "READY=1" after finishing the reload. --- maddy.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maddy.go b/maddy.go index c3a560bc..952e8354 100644 --- a/maddy.go +++ b/maddy.go @@ -521,7 +521,7 @@ func moduleReload(oldContainer *container.C, configPath string, asyncStopWg *syn newContainer.DefaultLogger.Error("failed to close old server log", err) } - systemdStatus(SDReloading, "Configuration running.") + systemdStatus(SDReady, "Configuration running.") }() return newContainer