blob: ac947ec72b346656e1a8445d467a58d263bc76c5 [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 }}"