mirror of
https://gitea.0xace.cc/ansible-galaxy/node-exporter.git
synced 2024-11-24 16:06:41 +00:00
18 lines
738 B
YAML
18 lines
738 B
YAML
---
|
|
- name: Load a variable file based on the OS type
|
|
include_vars: "{{ lookup('first_found', params) }}"
|
|
vars:
|
|
params:
|
|
files:
|
|
- "{{ ansible_facts['distribution'] }}-{{ ansible_facts['distribution_major_version'] }}.yaml"
|
|
- "{{ ansible_facts['distribution'] }}-{{ ansible_facts['distribution_version'] }}.yaml"
|
|
- "{{ ansible_facts['os_family'] }}-{{ ansible_facts['distribution_major_version'] }}.yaml"
|
|
- "{{ ansible_facts['os_family'] }}-{{ ansible_facts['distribution_version'] }}.yaml"
|
|
- "{{ ansible_facts['os_family'] }}.yaml"
|
|
paths:
|
|
- "vars"
|
|
tags: node_exporter_vars
|
|
|
|
- name: Include node_exporter install
|
|
include_tasks: "{{ ansible_facts['os_family'] }}.yaml"
|