From: Dan Mick Date: Fri, 13 Mar 2026 01:10:00 +0000 (-0700) Subject: nameserver: don't create /etc//named if it doesn't exist X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=861a0e2cf95e538542830f80d7e8afd11dbb6956;p=ceph-cm-ansible.git nameserver: don't create /etc//named if it doesn't exist It should exist. This would have caught the error that X is sysconfig on el systems and default on deb systems. Signed-off-by: Dan Mick --- diff --git a/roles/nameserver/tasks/config.yml b/roles/nameserver/tasks/config.yml index 430133d1..58a560b5 100644 --- a/roles/nameserver/tasks/config.yml +++ b/roles/nameserver/tasks/config.yml @@ -19,7 +19,7 @@ regexp: '^OPTIONS=' line: "OPTIONS=\"{{ named_conf_daemon_opts }}\"" state: present - create: True + create: false notify: restart named - name: Configure SELinux to allow named to write to master zone files