Merge "tripleo-container-manage: fix check mode"
This commit is contained in:
commit
cdbd670ff0
@ -97,7 +97,7 @@
|
||||
var: containers_commands
|
||||
- name: "Append the list of all podman commands that are run for containers with changes"
|
||||
set_fact:
|
||||
all_containers_commands: "{{ containers_commands + (all_containers_commands | default([]) | list) }}"
|
||||
all_containers_commands: "{{ containers_commands|default([], true) + (all_containers_commands | default([]) | list) }}"
|
||||
|
||||
- name: "Print the list of containers which changed"
|
||||
debug:
|
||||
|
@ -60,4 +60,4 @@
|
||||
var: containers_commands
|
||||
- name: "Append the list of all podman commands that are run for containers with changes"
|
||||
set_fact:
|
||||
all_containers_commands: "{{ containers_commands + (all_containers_commands | default([]) | list) }}"
|
||||
all_containers_commands: "{{ containers_commands|default([], true) + (all_containers_commands | default([]) | list) }}"
|
||||
|
Loading…
Reference in New Issue
Block a user