2018-03-10 19:18:04 +01:00
|
|
|
---
|
2021-01-06 11:17:58 +01:00
|
|
|
- include_tasks: versioncheck.yml
|
|
|
|
when: submodules_versioncheck|bool
|
|
|
|
|
2018-03-10 19:18:04 +01:00
|
|
|
- name: Install unbound
|
|
|
|
apt:
|
2019-07-20 02:08:55 +02:00
|
|
|
package:
|
2019-01-21 23:14:16 +01:00
|
|
|
- unbound
|
2021-01-19 01:03:47 +01:00
|
|
|
state: "{{ unbound__state }}"
|
|
|
|
update_cache: true
|
2018-03-10 19:18:04 +01:00
|
|
|
cache_valid_time: 43200
|
|
|
|
|
2019-07-20 02:08:55 +02:00
|
|
|
|
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'
|
2019-07-20 13:49:51 +02:00
|
|
|
notify:
|
|
|
|
- unbound checkconf
|
2018-03-10 19:18:04 +01:00
|
|
|
|
2019-07-20 02:08:55 +02:00
|
|
|
|
2018-03-10 19:18:04 +01:00
|
|
|
- name: Copy main unbound configuration
|
2019-07-20 02:08:55 +02:00
|
|
|
template:
|
2021-01-06 11:06:12 +01:00
|
|
|
src: 'files/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:
|
2019-07-20 13:49:51 +02:00
|
|
|
- unbound checkconf
|