Merge "Fix Error: invalid arguments you must use just one container" into stable/train

This commit is contained in:
Zuul 2020-07-04 00:52:32 +00:00 committed by Gerrit Code Review
commit 24c451b279
1 changed files with 6 additions and 6 deletions

View File

@ -175,9 +175,9 @@ outputs:
- container_id.stdout is defined
- container_id.stdout != ''
block:
- name: copy certificate from host to container
shell: "{{ container_cli }} cp {{ cert_path }} {{ container_id.stdout }}:{{ cert_path }}"
- name: set certificate group on host via container
command: "{{ container_cli }} exec --user root {{container_id.stdout}} chgrp haproxy {{ cert_path }}"
- name: send restart order to haproxy container
command: "{{ container_cli }} kill --signal=HUP {{ container_id.stdout }}"
- name: copy certificate, chgrp, restart haproxy
shell: |
{{ container_cli }} cp {{ cert_path }} {{ item }}:{{ cert_path }}
{{ container_cli }} exec --user root {{ item }} chgrp haproxy {{ cert_path }}
{{ container_cli }} kill --signal=HUP {{ item }}
with_items: "{{ container_id.stdout.split('\n') }}"