1
0
Fork 0
mirror of https://github.com/roles-ansible/ansible_role_unbound.git synced 2024-08-16 13:39:49 +02:00
ansible_role_unbound/tasks/main.yml
2019-07-20 13:49:51 +02:00

32 lines
618 B
YAML

---
- name: Install unbound
apt:
package:
- unbound
state: 'latest'
update_cache: yes
cache_valid_time: 43200
- name: Copy unbound configuration snippets
copy:
src: '{{ item }}'
dest: '/etc/unbound/unbound.conf.d/'
owner: root
group: root
mode: 'u=rw,g=r,o=r'
with_fileglob:
- 'files/snippets/*.conf'
notify:
- unbound checkconf
- name: Copy main unbound configuration
template:
src: '{{ lookup("hf", "unbound.conf") }}'
dest: '/etc/unbound/unbound.conf'
owner: root
group: root
mode: 'u=rw,g=r,o=r'
notify:
- unbound checkconf