From 88e736ddacf16d12859c344020c1e67cc3db5654 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Thu, 7 Mar 2019 12:36:11 +0100 Subject: [PATCH] taskotron/resultsdb-backend: Fix the mode to be string instead of integer For unclear reason ansible seems to have issues with mode expressed in integer while it seems to work much more nicely if they are provided as string. So moving to this for now. Signed-off-by: Pierre-Yves Chibon --- roles/taskotron/resultsdb-backend/tasks/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/roles/taskotron/resultsdb-backend/tasks/main.yml b/roles/taskotron/resultsdb-backend/tasks/main.yml index 91780f6159..5c8e371936 100644 --- a/roles/taskotron/resultsdb-backend/tasks/main.yml +++ b/roles/taskotron/resultsdb-backend/tasks/main.yml @@ -74,17 +74,17 @@ dest: resultsdb.crt owner: root group: apache - mode: 0644 + mode: "444" - src: "{{private}}/files/rabbitmq/{{env}}/pki/private/resultsdb{{ env_suffix }}.key" dest: resultsdb.key owner: root group: apache - mode: 0640 + mode: "440" - src: "{{private}}/files/rabbitmq/{{env}}/pki/ca.crt" dest: resultsdb.ca owner: root group: apache - mode: 0644 + mode: "444" when: env == "staging" tags: - fedora-messaging