summaryrefslogtreecommitdiffstats
path: root/roles/dnsserver/tasks/dirs.yml
diff options
context:
space:
mode:
authorMatthieu Saulnier <fantom@fedoraproject.org>2015-01-12 01:03:13 +0100
committerMatthieu Saulnier <fantom@fedoraproject.org>2015-01-12 01:03:13 +0100
commitc494e8289f19b07149512cee7eb118bfc906b380 (patch)
tree611ed48063d563fa7b201905e7785d697dee6a2f /roles/dnsserver/tasks/dirs.yml
parent06679fb354ea1b20b612430598c10208f4da46c1 (diff)
downloadplaybooks-ansible-c494e8289f19b07149512cee7eb118bfc906b380.tar.gz
playbooks-ansible-c494e8289f19b07149512cee7eb118bfc906b380.tar.xz
playbooks-ansible-c494e8289f19b07149512cee7eb118bfc906b380.zip
Add ns3 in dnsserver role
Update DNS zone Add missing configuration case on Centos Add new reverse DNS files Fix log dir and log file creation for named
Diffstat (limited to 'roles/dnsserver/tasks/dirs.yml')
-rw-r--r--roles/dnsserver/tasks/dirs.yml33
1 files changed, 0 insertions, 33 deletions
diff --git a/roles/dnsserver/tasks/dirs.yml b/roles/dnsserver/tasks/dirs.yml
index ba46426..f7e1083 100644
--- a/roles/dnsserver/tasks/dirs.yml
+++ b/roles/dnsserver/tasks/dirs.yml
@@ -3,7 +3,6 @@
owner=root
group=named
mode=770
- when: ansible_distribution == "Fedora"
- name: Création du répertoire de log dans /var/named/chroot/
file: path=/var/named/chroot/var/log/named/ state=directory
@@ -12,38 +11,6 @@
mode=770
when: ansible_distribution == "CentOS"
-- name: Création initiale des fichiers journaux dans /var/log/
- file: path=/var/log/named/{{ item }} state=touch
- owner=named
- group=named
- mode=644
- with_items:
- - lame-servers.log
- - notify.log
- - query.log
- - security.log
- - syslog.log
- - update.log
- - xfer-in.log
- - xfer-out.log
- when: ansible_distribution == "Fedora"
-
-- name: Création initiale des fichiers journaux dans /var/named/chroot/
- file: path=/var/named/chroot/var/log/named/{{ item }} state=touch
- owner=named
- group=named
- mode=644
- with_items:
- - lame-servers.log
- - notify.log
- - query.log
- - security.log
- - syslog.log
- - update.log
- - xfer-in.log
- - xfer-out.log
- when: ansible_distribution == "CentOS"
-
- name: Modification des permissions de /var/named/
file: path=/var/named/ state=directory mode=770