feat: initial commit

This commit is contained in:
Simon Cornet 2025-07-14 14:19:39 +02:00
commit f8ec658b1a
18 changed files with 328 additions and 93 deletions

12
tasks/config.yaml Normal file
View file

@ -0,0 +1,12 @@
---
# 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"