Rename bind files

This commit is contained in:
Lan Quil 2024-06-18 23:33:59 +02:00
parent e7154ceb2d
commit 9113d2f9a7
3 changed files with 3 additions and 3 deletions

View File

@ -2,14 +2,14 @@
- name: Bind configuration
hosts: all
tasks:
- name: Install chrony
- name: Install bind
ansible.builtin.apt:
name:
- bind9
- name: Install conf file
ansible.builtin.copy:
src: bind/conf
src: bind/named.conf.local
dest: /etc/bind/named.conf.local
owner: root # TODO check
mode: '0600' # TODO check
@ -17,7 +17,7 @@
- name: Install zone file
ansible.builtin.copy:
src: bind/zones
src: bind/db.golem.linux.it
dest: /etc/bind/zones/db.golem.linux.it
owner: root # TODO check
mode: '0600' # TODO check