diff --git a/tripleo_ansible/roles/tripleo-container-manage/tasks/podman/create.yml b/tripleo_ansible/roles/tripleo-container-manage/tasks/podman/create.yml index f56713720..c852f15f4 100644 --- a/tripleo_ansible/roles/tripleo-container-manage/tasks/podman/create.yml +++ b/tripleo_ansible/roles/tripleo-container-manage/tasks/podman/create.yml @@ -110,7 +110,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|list + (all_containers_commands | default([]) | list) }}" + all_containers_commands: "{{ containers_commands + (all_containers_commands | default([]) | list) }}" - name: "Print the list of containers which changed" debug: diff --git a/tripleo_ansible/roles/tripleo-container-manage/tasks/podman/exec.yml b/tripleo_ansible/roles/tripleo-container-manage/tasks/podman/exec.yml index 548b5823f..ef26d94e7 100644 --- a/tripleo_ansible/roles/tripleo-container-manage/tasks/podman/exec.yml +++ b/tripleo_ansible/roles/tripleo-container-manage/tasks/podman/exec.yml @@ -63,4 +63,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|list + (all_containers_commands | default([]) | list) }}" + all_containers_commands: "{{ containers_commands + (all_containers_commands | default([]) | list) }}"