From 129b8a20bcd7c5220cc2a36b3a862faed9e056e2 Mon Sep 17 00:00:00 2001 From: punkero-org Date: Wed, 6 May 2026 14:50:06 -0500 Subject: [PATCH] fix(cmdeploy): stop and disable unbound-resolvconf Commit 825831e purges resolvconf, however the unbound service activates a 'wants' unit for async resolvconf updates. This results in errors in systemd startup as the unit will now always fail. Stop and disable the unbound-resolvconf unit activation --- cmdeploy/src/cmdeploy/deployers.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/cmdeploy/src/cmdeploy/deployers.py b/cmdeploy/src/cmdeploy/deployers.py index 88f29f18..292d64bc 100644 --- a/cmdeploy/src/cmdeploy/deployers.py +++ b/cmdeploy/src/cmdeploy/deployers.py @@ -192,6 +192,12 @@ class UnboundDeployer(Deployer): self.ensure_service("unbound.service") + self.ensure_service( + "unbound-resolvconf.service", + running=False, + enabled=False, + ) + class MtastsDeployer(Deployer): def configure(self):