From 4d6e4d857c4754d40c95509b1e4f4b6fa52cefc3 Mon Sep 17 00:00:00 2001 From: Jesse Pretorius Date: Tue, 23 May 2017 23:31:45 +0100 Subject: [PATCH] Ensure that policy file has correct group/mode When the policy file is copied from the templated file to the active file, it loses its group/mode settings. This patch ensures that they are properly replicated during the copy. Change-Id: I39f3c80244f9565d290f420eadeb28e8b77d2d33 --- handlers/main.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/handlers/main.yml b/handlers/main.yml index 1fcdde3c..b499f2d6 100644 --- a/handlers/main.yml +++ b/handlers/main.yml @@ -47,6 +47,9 @@ copy: src: "/etc/glance/policy.json-{{ glance_venv_tag }}" dest: "/etc/glance/policy.json" + owner: "root" + group: "{{ glance_system_group_name }}" + mode: "0640" remote_src: yes - name: Start services