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

31 lines
582 B
YAML
Raw Normal View History

2018-03-10 19:18:04 +01:00
---
- name: Install unbound
apt:
package:
2019-01-21 23:14:16 +01:00
- unbound
2018-03-10 19:18:04 +01:00
state: 'latest'
update_cache: yes
cache_valid_time: 43200
2018-03-10 19:18:04 +01:00
- 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'
2018-03-10 19:18:04 +01:00
- name: Copy main unbound configuration
template:
src: '{{ lookup("hf", "unbound.conf") }}'
2018-03-10 19:18:04 +01:00
dest: '/etc/unbound/unbound.conf'
owner: root
group: root
mode: 'u=rw,g=r,o=r'
notify:
- restart unbound