aboutsummaryrefslogtreecommitdiffstats
path: root/roles/space_server/tasks/unbound.yml
blob: 100732790a03dcad40544fdcccbd30e88f43b55b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
---
- name: Install unbound package
  dnf:
    name: unbound
    state: present
  tags:
    - packages

- name: Configure unbound
  template:
    src: unbound/unbound.conf.j2
    dest: '/etc/unbound/unbound.conf'
    owner: root
    group: root
    mode: 0644
  notify:
    - restart unbound

- name: Enable unbound service
  systemd:
    name: unbound.service
    enabled: yes
    masked: no
    state: started
  when: not chroot
- name: '- when in chroot'
  command: systemctl enable unbound.service
  args:
    creates: '/etc/systemd/system/multi-user.target.wants/unbound.service'
  when: chroot

- name: Use our own resolver
  copy:
    dest: /etc/resolv.conf
    content: "nameserver 127.0.0.1\nnameserver ::1\n"
    owner: root
    group: root
    mode: 0644

# vim: set ts=2 sw=2 et ft=yaml: