12 lines
266 B
YAML
12 lines
266 B
YAML
---
|
|
|
|
# configure unbound
|
|
- name: "config - unbound"
|
|
ansible.builtin.template:
|
|
src: "{{ item }}"
|
|
dest: "/etc/unbound/unbound.conf.d/"
|
|
owner: "root"
|
|
group: "root"
|
|
mode: "0644"
|
|
with_fileglob: "templates/unbound/*.j2"
|
|
notify: "restart unbound"
|