unbound/tasks/config.yaml
2025-07-14 14:19:39 +02:00

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"