20 lines
415 B
YAML
20 lines
415 B
YAML
---
|
|
|
|
- name: "Import named.conf.local"
|
|
tags: bind9
|
|
ansible.builtin.template:
|
|
src: named.conf.local.j2
|
|
dest: /etc/bind/named.conf.local
|
|
owner: root
|
|
group: bind
|
|
mode: '0644'
|
|
|
|
- name: "Import data base domain serti.fun"
|
|
tags: bind9
|
|
ansible.builtin.template:
|
|
src: db.serti.fun.j2
|
|
dest: /etc/bind/db.serti.fun
|
|
owner: root
|
|
group: bind
|
|
mode: '0644'
|
|
notify: "restart bind9" |