2019-03-09 00:31:38 +00:00
|
|
|
---
|
|
|
|
- name: reload unbound
|
|
|
|
service:
|
|
|
|
name: "{{ unbound_service_name }}"
|
|
|
|
state: reloaded
|
2019-03-13 06:48:27 +00:00
|
|
|
when: unbound_service_enabled
|
2019-03-27 07:08:13 +00:00
|
|
|
|
2022-08-30 12:24:18 +00:00
|
|
|
- name: restart unbound
|
|
|
|
service:
|
|
|
|
name: "{{ unbound_service_name }}"
|
|
|
|
state: restarted
|
|
|
|
when: unbound_service_enabled
|
|
|
|
|
2019-03-27 07:08:13 +00:00
|
|
|
# vim:ft=yaml.ansible:
|