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

Fix first_found logic

This commit is contained in:
s3lph 2021-11-03 10:57:44 +01:00
parent c51066cf17
commit a8a3042699
2 changed files with 15 additions and 13 deletions

View file

@ -1,9 +1,10 @@
---
- name: install node exporter
include_tasks: "install/{{ item }}.yml"
with_first_found:
- "{% 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 %}"
- "{% if 'id' in ansible_lsb %}{{ ansible_lsb.id }}{% else %}{{ ansible_distribution }}{% endif %}"
- "{{ ansible_distribution }}_{{ ansible_distribution_version }}"
- "{{ ansible_distribution }}"
include_tasks: "{{ lookup('ansible.builtin.first_found', paths=['tasks/install'], files=files) }}"
vars:
files:
- "{% 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"
- "{% if 'id' in ansible_lsb %}{{ ansible_lsb.id }}{% else %}{{ ansible_distribution }}{% endif %}.yml"
- "{{ ansible_distribution }}_{{ ansible_distribution_version }}.yml"
- "{{ ansible_distribution }}.yml"

View file

@ -1,13 +1,14 @@
---
- name: include os specific vars
include_vars: "{{ item }}.yml"
with_first_found:
- "{% 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 %}"
- "{% if 'id' in ansible_lsb %}{{ ansible_lsb.id }}{% else %}{{ ansible_distribution }}{% endif %}"
- "{{ ansible_distribution }}_{{ ansible_distribution_version }}"
- "{{ ansible_distribution }}"
- "default"
include_vars: "{{ lookup('ansible.builtin.first_found', paths=['vars'], files=files)"
vars:
files:
- "{% 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"
- "{% if 'id' in ansible_lsb %}{{ ansible_lsb.id }}{% else %}{{ ansible_distribution }}{% endif %}.yml"
- "{{ ansible_distribution }}_{{ ansible_distribution_version }}.yml"
- "{{ ansible_distribution }}.yml"
- "default.yml"
tags:
- "role::prometheus_node"
- "role::prometheus_node:install"