ansible-roles/bind/handlers/main.yml
William Hirigoyen cd8a812288
All checks were successful
gitea/ansible-roles/pipeline/head This commit looks good
bind: fix fail in check mode
2023-02-21 15:14:05 +01:00

23 lines
322 B
YAML

---
- name: reload systemd
systemd:
daemon-reload: yes
- name: restart apparmor
systemd:
name: apparmor
state: restarted
- name: restart bind
systemd:
name: bind9
state: restarted
when: not ansible_check_mode
- name: restart munin-node
systemd:
name: munin-node
state: restarted