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 <pingou@pingoured.fr>
This commit is contained in:
Pierre-Yves Chibon 2019-03-07 12:36:11 +01:00
parent 5fc5e77269
commit 88e736ddac

View file

@ -74,17 +74,17 @@
dest: resultsdb.crt dest: resultsdb.crt
owner: root owner: root
group: apache group: apache
mode: 0644 mode: "444"
- src: "{{private}}/files/rabbitmq/{{env}}/pki/private/resultsdb{{ env_suffix }}.key" - src: "{{private}}/files/rabbitmq/{{env}}/pki/private/resultsdb{{ env_suffix }}.key"
dest: resultsdb.key dest: resultsdb.key
owner: root owner: root
group: apache group: apache
mode: 0640 mode: "440"
- src: "{{private}}/files/rabbitmq/{{env}}/pki/ca.crt" - src: "{{private}}/files/rabbitmq/{{env}}/pki/ca.crt"
dest: resultsdb.ca dest: resultsdb.ca
owner: root owner: root
group: apache group: apache
mode: 0644 mode: "444"
when: env == "staging" when: env == "staging"
tags: tags:
- fedora-messaging - fedora-messaging