blob: ac947ec72b346656e1a8445d467a58d263bc76c5 [file] [log] [blame]
---
- name: Find images to be inserted into nexus in runtime
find:
paths: "{{ aux_data_path }}"
patterns: '*.tar'
register: tar_images
# WA: block of tasks cant be executed in iterations
# need to iterate over those tasks in include
- include: "insert-images.yml"
with_items: "{{ tar_images.files }}"