blob: dda676956307dc346f5d137e56164164ac84303d (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
 | - name: Install unbound
  apt: pkg={{ packages }}
  vars:
    packages:
    - unbound
    - dns-root-data
- name: Copy unbound configuration
  template: src=templates/etc/unbound/unbound.conf.j2
            dest=/etc/unbound/unbound.conf
            owner=root group=root
            mode=0644
  register: r
  notify:
    - Restart unbound
- name: Start unbound
  service: name=unbound state=started
  when: not r.changed
#- meta: flush_handlers
 |