15 lines
311 B
YAML
15 lines
311 B
YAML
- name: Install Unbound
|
|
ansible.builtin.apt:
|
|
name:
|
|
- "unbound"
|
|
notify:
|
|
- "Restart unbound"
|
|
|
|
- name: Deploy unbounf config file
|
|
ansible.builtin.template:
|
|
src: "templates/unbound.conf"
|
|
dest: "/etc/unbound/unbound.conf.d/unbound.conf"
|
|
mode: "0644"
|
|
notify:
|
|
- "Restart unbound"
|