blob: 2d90bf22b88a5da3720ed88d4383a5c073bf28e2 [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"
Bartek Grzybowski76e017a2019-06-04 12:47:20 +020011 loop: "{{ tar_images.files }}"