From 24135395296790ea151481aa4be541fe4111d099 Mon Sep 17 00:00:00 2001 From: Jeremy Lecour Date: Thu, 20 Apr 2017 13:54:35 +0200 Subject: [PATCH] bind: fix rights for named.conf.options --- bind/tasks/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bind/tasks/main.yml b/bind/tasks/main.yml index 0bc3e5cd..2c8e0278 100644 --- a/bind/tasks/main.yml +++ b/bind/tasks/main.yml @@ -5,10 +5,10 @@ - name: Set bind configuration template: - src: named.conf.options.j2 + src: named.conf.options.j2 dest: /etc/bind/named.conf.options - owner: root - group: root + owner: bind + group: bind mode: "0644" force: yes backup: yes