blob: d29505829fafe798192cf9cb2291b0ec02b9b54a (
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
41
42
43
44
45
46
47
48
49
50
51
52
|
---
- name: Install bind package
dnf:
name: bind
state: latest
notify:
- restart named
tags:
- packages
- name: Configure named
copy:
src: named/named.conf
dest: '/etc/named.conf'
mode: 0640
notify:
- restart named
- name: Create s zone
copy:
src: named/s.zone
dest: '/etc/named/s.zone'
notify:
- restart named
- name: Create service drop-in directory
file:
dest: '/etc/systemd/system/named.service.d'
state: directory
- name: Start named after networks are configured
copy:
src: wait-online.conf
dest: '/etc/systemd/system/named.service.d/wait-online.conf'
- name: Enable named service
systemd:
name: named.service
enabled: yes
masked: no
state: started
when: "'container' not in ansible_env"
- name: '- when in nspawn'
command: systemctl enable named.service
args:
creates: '/etc/systemd/system/multi-user.target.wants/named.service'
when: "'container' in ansible_env"
- name: Use our own resolver
copy:
dest: /etc/resolv.conf
content: "nameserver 127.0.0.1\nnameserver ::1\n"
# vim: set ts=2 sw=2 et ft=yaml:
|