1
0
Fork 0
mirror of https://gitlab.com/s3lph/ansible-collection-prometheus synced 2024-10-23 11:56:59 +02:00
ansible-collection-prometheus/roles/prometheus_node/tasks/install.yml

14 lines
661 B
YAML
Raw Normal View History

2021-11-03 10:45:45 +01:00
---
- name: install node exporter
2021-11-03 11:02:59 +01:00
ansible.builtin.include_tasks: "{{ lookup('ansible.builtin.first_found', files) }}"
2021-11-03 10:57:44 +01:00
vars:
files:
2021-11-03 11:02:59 +01:00
paths:
- tasks/install
files:
2021-11-06 05:22:17 +01:00
- "{% if 'id' in ansible_lsb %}{{ ansible_lsb.id }}{% else %}{{ ansible_distribution }}{% endif %}_{% if 'major_release' in ansible_lsb %}{{ ansible_lsb.major_release }}{% else %}{{ ansible_distribution_version }}{% endif %}.yml"
2021-11-03 11:02:59 +01:00
- "{% if 'id' in ansible_lsb %}{{ ansible_lsb.id }}{% else %}{{ ansible_distribution }}{% endif %}.yml"
- "{{ ansible_distribution }}_{{ ansible_distribution_version }}.yml"
- "{{ ansible_distribution }}.yml"