ansible-roles/bind/handlers/main.yml
Jérémy Lecour 8cbe837147
All checks were successful
gitea/ansible-roles/pipeline/head This commit looks good
bind: refactor role
* queries log can be enabled or disabled
* split tasks
* check if AppArmor is present
* don't install Munin plugin whose data file is not present
* remove example ACL in authoritative configuration
2023-02-21 19:01:01 +01:00

22 lines
291 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
- name: restart munin-node
systemd:
name: munin-node
state: restarted