+- name: configure systemd (create dir)
+ file: path=/etc/systemd/system/unbound.service.d state=directory
+- name: configure systemd (tweak unbound)
+ register: unbound_systemd
+ copy:
+ dest: /etc/systemd/system/unbound.service.d/override.conf
+ src: files/unbound/unbound.service.override
+- name: reload systemd
+ when: unbound_systemd.changed
+ command: systemctl daemon-reload