commit e8e34e593f06ce7e931198f68211ecb9cd8b4eb1
parent 34af7910590b4efaf7ad5159759c2a7f56428e02
Author: Leah (ctucx) <leah@ctu.cx>
Date: Sun, 28 Feb 2021 20:20:17 +0100
parent 34af7910590b4efaf7ad5159759c2a7f56428e02
Author: Leah (ctucx) <leah@ctu.cx>
Date: Sun, 28 Feb 2021 20:20:17 +0100
roles/bind: fix handler
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/roles/bind/handlers/main.yml b/roles/bind/handlers/main.yml @@ -1,16 +1,16 @@ --- -- name: "[OpenRC] Restart service: bind (to deploy config changes)" +- name: "[OpenRC] Restart service: named (to deploy config changes)" service: - name: bind + name: named state: restarted when: - ansible_service_mgr == "openrc" listen: "Restart bind" -- name: "[systemd] Restart service: bind (to deploy config changes)" +- name: "[systemd] Restart service: named (to deploy config changes)" systemd: - name: bind + name: named state: restarted when: - ansible_service_mgr == "systemd"