ansible-roles/roles/repo_base/tasks/main.yml

13 lines
348 B
YAML
Raw Normal View History

2021-12-01 19:13:34 +01:00
---
2022-03-07 15:00:06 +01:00
- include_tasks: '{{ repo_item }}'
2021-12-01 19:13:34 +01:00
with_first_found:
- '{{ ansible_distribution }}-{{ ansible_distribution_major_version }}.yml'
- '{{ ansible_os_family }}-{{ ansible_distribution_major_version }}.yml'
- '{{ ansible_distribution }}.yml'
- '{{ ansible_os_family }}.yml'
loop_control:
loop_var: repo_item
2022-03-07 15:00:06 +01:00
tags: always
2021-12-01 19:13:34 +01:00