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
This commit is contained in:
punkero-org
2026-05-06 14:50:06 -05:00
committed by missytake
parent a1f64ebd96
commit 129b8a20bc

View File

@@ -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):