From ffd26a061b126dd4eae403034188630a363ccd77 Mon Sep 17 00:00:00 2001 From: Jesse Pretorius Date: Tue, 23 May 2017 23:44:15 +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: I3fdd5d0122dec93a95c47b1f473b74eba11d6f26 --- handlers/main.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/handlers/main.yml b/handlers/main.yml index 6f3f852..682b865 100644 --- a/handlers/main.yml +++ b/handlers/main.yml @@ -47,6 +47,9 @@ copy: src: "/etc/cloudkitty/policy.json-{{ cloudkitty_venv_tag }}" dest: "/etc/cloudkitty/policy.json" + owner: "root" + group: "{{ cloudkitty_system_group_name }}" + mode: "0640" remote_src: yes - name: Start services