mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-04-12 00:03:17 +02:00
13 lines
348 B
YAML
13 lines
348 B
YAML
---
|
|
|
|
- include_tasks: '{{ repo_item }}'
|
|
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
|
|
tags: always
|
|
|