[mailman3] Fix the YAML error
Signed-off-by: Michal Konecny <mkonecny@redhat.com>
This commit is contained in:
parent
c609ecb432
commit
98417787d6
1 changed files with 4 additions and 4 deletions
|
@ -73,11 +73,11 @@
|
|||
|
||||
- name: Deploy mailman/rabbitmq certificate
|
||||
ansible.builtin.copy:
|
||||
src: {{item.src}}
|
||||
src: "{{item.src}}"
|
||||
dest: "/etc/pki/rabbitmq/mailman/{{item.dest}}"
|
||||
owner: root
|
||||
group: root
|
||||
mode: {{item.mode}}
|
||||
mode: "{{item.mode}}"
|
||||
when: env == 'staging'
|
||||
with_items:
|
||||
- src: "{{private}}/files/rabbitmq/staging/pki/issued/mailman3-fedmsg-plugin.stg.crt"
|
||||
|
@ -95,11 +95,11 @@
|
|||
|
||||
- name: Deploy mailman/rabbitmq certificate
|
||||
ansible.builtin.copy:
|
||||
src: {{item.src}}
|
||||
src: "{{item.src}}"
|
||||
dest: "/etc/pki/rabbitmq/mailman/{{item.dest}}"
|
||||
owner: root
|
||||
group: root
|
||||
mode: {{item.mode}}
|
||||
mode: "{{item.mode}}"
|
||||
when: env != 'staging'
|
||||
with_items:
|
||||
- src: "{{private}}/files/rabbitmq/production/pki/issued/mailman3-fedmsg-plugin.crt"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue