ansible-ipa-management/tasks/dns-ext.yml

20 lines
435 B
YAML
Raw Normal View History

2023-04-19 07:46:15 +00:00
---
- name: Configure ACL for nets
ansible.builtin.template:
src: "etc/named/ipa-ext.conf"
dest: "/etc/named/ipa-ext.conf"
owner: root
group: named
mode: '0640'
notify: restart_named
- name: Turn on recursion for nets
ansible.builtin.template:
src: "etc/named/ipa-options-ext.conf"
dest: "/etc/named/ipa-options-ext.conf"
owner: root
group: named
mode: '0640'
notify: restart_named
...