Merge "Replace include: with include_tasks: in tripleo_container_manager"

This commit is contained in:
Zuul 2021-04-08 15:26:58 +00:00 committed by Gerrit Code Review
commit 9b77df4b00
1 changed files with 4 additions and 1 deletions

View File

@ -17,7 +17,10 @@
- name: "Create containers managed by Podman for {{ tripleo_container_manage_config }}"
when:
- tripleo_container_manage_cli == 'podman'
include: podman/start_order.yml order="{{ item.key }}" data="{{ item.value }}"
include_tasks: podman/start_order.yml
vars:
order: "{{ item.key }}"
data: "{{ item.value }}"
loop: "{{ all_containers_hash | subsort(attribute='start_order', null_value=0) | dict2items | list }}"
- name: "Manage container systemd services and cleanup old systemd healthchecks for {{ tripleo_container_manage_config }}"