blob: e22b650e16a906f8b32b2d0dbfbc8213a273a1cd [file] [log] [blame]
Michal Zegan3a7e0732018-12-19 11:51:26 +01001---
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 }}"
12