blob: 83e35abaa16cf60beed29eb941802d4d96948eab [file] [log] [blame]
Zack Williams503aabf2017-10-24 09:59:35 -07001---
Matteo Scandolo3896c472017-08-01 13:31:42 -07002# Copyright 2017-present Open Networking Foundation
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
Zack Williams503aabf2017-10-24 09:59:35 -070016# dns-nsd/tasks/main.yml
Zack Williams99adf6b2016-03-14 17:01:08 -070017
Zack Williams503aabf2017-10-24 09:59:35 -070018- name: Install nsd
19 apt:
20 name: "{{ item }}"
21 state: present
22 update_cache: yes
23 cache_valid_time: 3600
24 with_items:
25 - nsd
Zack Williams6dc2d452017-12-20 17:50:49 -070026 register: nsd_install
Zack Williams99adf6b2016-03-14 17:01:08 -070027
Zack Williams6dc2d452017-12-20 17:50:49 -070028- name: Stop nsd until configured
29 when: nsd_install.changed
30 service:
31 name: nsd
32 enabled: no
33 state: stopped
34 tags:
35 - skip_ansible_lint # need to down service before configured
36
37- name: Create nsd zones directory
Zack Williams709f11b2016-03-17 14:29:51 -070038 file:
Zack Williamsbf43d752017-07-01 15:27:11 -070039 name: "{{ nsd_zonesdir }}"
40 state: directory
41 mode: 0755
42 owner: root
43 group: "{{ nsd_group }}"
Zack Williams99adf6b2016-03-14 17:01:08 -070044
45- name: Create nsd.conf from template
46 template:
Zack Williamsbf43d752017-07-01 15:27:11 -070047 src: nsd.conf.j2
48 dest: "{{ nsd_conf }}"
49 mode: 0644
50 owner: root
51 group: "{{ nsd_group }}"
Zack Williams99adf6b2016-03-14 17:01:08 -070052 notify:
Zack Williamsbed0e742016-04-07 21:23:52 -070053 - restart-nsd
Zack Williams99adf6b2016-03-14 17:01:08 -070054
Zack Williams6dc2d452017-12-20 17:50:49 -070055- name: Create forward zonefiles from template
Zack Williams99adf6b2016-03-14 17:01:08 -070056 template:
Zack Williamsbf43d752017-07-01 15:27:11 -070057 src: zone.forward.j2
58 dest: "{{ nsd_zonesdir }}/{{ item.name }}.forward"
59 mode: 0644
60 owner: root
61 group: "{{ nsd_group }}"
62 with_items: "{{ nsd_zones }}"
Zack Williams99adf6b2016-03-14 17:01:08 -070063 notify:
Zack Williams709f11b2016-03-17 14:29:51 -070064 - reload-nsd
Zack Williams99adf6b2016-03-14 17:01:08 -070065
Zack Williams6dc2d452017-12-20 17:50:49 -070066- name: Create reverse zonefiles from template
Zack Williams99adf6b2016-03-14 17:01:08 -070067 template:
Zack Williamsbf43d752017-07-01 15:27:11 -070068 src: zone.reverse.j2
69 dest: "{{ nsd_zonesdir }}/{{ item.name }}.reverse"
70 mode: 0644
71 owner: root
72 group: "{{ nsd_group }}"
73 with_items: "{{ nsd_zones }}"
Zack Williams99adf6b2016-03-14 17:01:08 -070074 notify:
Zack Williams709f11b2016-03-17 14:29:51 -070075 - reload-nsd
Zack Williams99adf6b2016-03-14 17:01:08 -070076
Zack Williams503aabf2017-10-24 09:59:35 -070077- name: flush nsd handlers
78 meta: flush_handlers
79