Initial commit

This commit is contained in:
Julian Rother 2025-11-11 03:34:00 +01:00
commit fcbc90c89c
Signed by: julian
GPG key ID: C19B924C0CD13341
4 changed files with 72 additions and 0 deletions

12
tasks/main.yml Normal file
View file

@ -0,0 +1,12 @@
- name: install packages
ansible.builtin.apt:
pkg:
- unbound
- unbound-anchor
- name: copy unbound config
ansible.builtin.template:
src: unbound.conf.j2
dest: /etc/unbound/unbound.conf
mode: "0640"
notify: restart unbound