blob: 199e0966ae7aed6093acd4b6a18e0a98c3c04e0f [file] [log] [blame]
---
- name: Validate that we have a download_folder
fail:
msg: "Please specify a local download folder: -e download_folder=<local download folder>"
when: download_folder is not defined
- name: Download files
fetch:
src: "{{ item.path }}"
dest: "{{ download_folder }}"
with_items: "{{ result.files }}"
when: result is defined and result.files is defined