Newer
Older
- import_tasks: download_prep.yml
- not skip_downloads|default(false)
- name: "Download items"
include: "download_{% if download.container %}container{% else %}file{% endif %}.yml"
vars:
download: "{{ download_defaults | combine(item.value) }}"
with_dict: "{{ downloads }}"
- not skip_downloads|default(false)
- item.enabled
- name: "Sync container"
include: sync_container.yml
vars:
download: "{{ download_defaults | combine(item.value) }}"
with_dict: "{{ downloads }}"
- not skip_downloads|default(false)
- item.enabled
- item.container
- download_run_once