ansible-roles/bind/handlers/main.yml
Patrick Marchand e5511eafc6
All checks were successful
continuous-integration/drone/push Build is passing
Revert changes to bind log path from apparmor fix
I realised it wasnt the best idea to change the path we are used to using just for this, so I overwrite the apparmor configuration instead.
2021-03-09 16:58:14 -05:00

20 lines
291 B
YAML

---
- name: reload systemd
command: systemctl daemon-reload
- name: restart apparmor
service:
name: apparmor
state: restarted
- name: restart bind
service:
name: bind9
state: restarted
- name: restart munin-node
service:
name: munin-node
state: restarted