29 lines
770 B
YAML
29 lines
770 B
YAML
|
---
|
||
|
- name: gather os specific variables
|
||
|
include_vars: "{{ lookup('first_found', possible_files) }}"
|
||
|
vars:
|
||
|
possible_files:
|
||
|
files:
|
||
|
- "{{ ansible_distribution }}-{{ ansible_distribution_version }}.yaml"
|
||
|
- "{{ ansible_distribution }}.yaml"
|
||
|
- "{{ ansible_os_family }}.yaml"
|
||
|
- "default.yaml"
|
||
|
paths:
|
||
|
- vars
|
||
|
|
||
|
- name: include os specific tasks
|
||
|
include_tasks: "{{ lookup('first_found', possible_files) }}"
|
||
|
vars:
|
||
|
possible_files:
|
||
|
files:
|
||
|
- "{{ ansible_distribution }}-{{ ansible_distribution_version }}.yaml"
|
||
|
- "{{ ansible_distribution }}.yaml"
|
||
|
- "{{ ansible_os_family }}.yaml"
|
||
|
- "default.yaml"
|
||
|
paths:
|
||
|
- tasks
|
||
|
|
||
|
- include: install.yaml
|
||
|
|
||
|
- include: configure.yaml
|