bind: use systemd module

This commit is contained in:
Jérémy Lecour 2023-02-21 15:08:02 +01:00 committed by Jérémy Lecour
parent 6968128e7c
commit 21a4f76330
2 changed files with 4 additions and 3 deletions

View file

@ -21,6 +21,7 @@ The **patch** part changes is incremented if multiple releases happen the same m
* Use systemd module instead of command
* Removed all "warn: False" args in command, shell and other modules as it's been deprecated and will give a hard fail in ansible-core 2.14.0.
* bind: use systemd module
* webapps/nextcloud : Change default data directory to be outside web root
* webapps/nextcloud : Small enhancement on the vhost template to lock out data dir
* nagios-nrpe : Rewrite check_vrrpd for a better check (check rp_filter, vrrpd and uvrrpd compatible, use arguments, …)

View file

@ -5,17 +5,17 @@
- name: restart apparmor
service:
systemd:
name: apparmor
state: restarted
- name: restart bind
service:
systemd:
name: bind9
state: restarted
- name: restart munin-node
service:
systemd:
name: munin-node
state: restarted