summaryrefslogtreecommitdiffstats
path: root/ansible/roles/nexus/tasks/runtime-populate.yml
blob: ac947ec72b346656e1a8445d467a58d263bc76c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
---
- 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 }}"