distgit/pagure: change how the group name is defined
The previous approach didn't seem to be liked by ansible Signed-off-by: Pierre-Yves Chibon <pingou@pingoured.fr>
This commit is contained in:
parent
997500ce2c
commit
de81dd973d
1 changed files with 3 additions and 3 deletions
|
@ -387,17 +387,17 @@
|
|||
- src: "{{private}}/files/rabbitmq/{{env}}/pki/issued/pagure{{ env_suffix }}.crt"
|
||||
dest: src.fp.o.crt
|
||||
owner: pagure
|
||||
group: {% if env == 'staging' %} repoSpanner {% else %} pagure {% endif %}
|
||||
group: "{{ (env == 'production')|ternary('pagure', 'repoSpanner') }}"
|
||||
mode: "444"
|
||||
- src: "{{private}}/files/rabbitmq/{{env}}/pki/private/pagure{{ env_suffix }}.key"
|
||||
dest: src.fp.o.key
|
||||
owner: pagure
|
||||
group: {% if env == 'staging' %} repoSpanner {% else %} pagure {% endif %}
|
||||
group: "{{ (env == 'production')|ternary('pagure', 'repoSpanner') }}"
|
||||
mode: "440"
|
||||
- src: "{{private}}/files/rabbitmq/{{env}}/pki/ca.crt"
|
||||
dest: src.fp.o.ca
|
||||
owner: pagure
|
||||
group: {% if env == 'staging' %} repoSpanner {% else %} pagure {% endif %}
|
||||
group: "{{ (env == 'production')|ternary('pagure', 'repoSpanner') }}"
|
||||
mode: "444"
|
||||
tags:
|
||||
- pagure
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue