Michal Zegan | 3a7e073 | 2018-12-19 11:51:26 +0100 | [diff] [blame] | 1 | --- |
2 | - name: Find images to be inserted into nexus in runtime | ||||
3 | find: | ||||
4 | paths: "{{ aux_data_path }}" | ||||
5 | patterns: '*.tar' | ||||
6 | register: tar_images | ||||
7 | |||||
8 | # WA: block of tasks cant be executed in iterations | ||||
9 | # need to iterate over those tasks in include | ||||
10 | - include: "insert-images.yml" | ||||
11 | with_items: "{{ tar_images.files }}" |