35 lines
888 B
YAML
35 lines
888 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: pre.yaml
|
||
|
|
||
|
- include: install.yaml
|
||
|
|
||
|
- include: configure.yaml
|
||
|
notify: restart prometheus
|
||
|
|
||
|
- include: nginx.yaml
|
||
|
when: '"nginx" in ansible_play_role_names'
|