Merge "Fix the failure condition for HAproxy chgrp script" into stable/wallaby

This commit is contained in:
Zuul 2021-09-28 00:06:38 +00:00 committed by Gerrit Code Review
commit 71bd087204
1 changed files with 1 additions and 0 deletions

View File

@ -184,6 +184,7 @@ outputs:
{{ container_cli }} kill --signal=HUP {{ item }}
register: container_kill_result
failed_when:
- container_kill_result.rc != 0
- ("no such container" not in container_kill_result.stderr)
- ("container state improper" not in container_kill_result.stderr)
with_items: "{{ container_id.stdout.split('\n') }}"