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

Fix yet another jinja syntax error

This commit is contained in:
s3lph 2021-11-03 10:50:56 +01:00
parent 3cc4e33888
commit c51066cf17
2 changed files with 2 additions and 2 deletions

View file

@ -3,7 +3,7 @@
- name: install node exporter
include_tasks: "install/{{ item }}.yml"
with_first_found:
- "{% if 'id' in ansible_lsb %}{{ ansible_lsb.id }}{% else %}{{ ansible_distribution }}_{% 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 %}_{% 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 }}"

View file

@ -3,7 +3,7 @@
- name: include os specific vars
include_vars: "{{ item }}.yml"
with_first_found:
- "{% if 'id' in ansible_lsb %}{{ ansible_lsb.id }}{% else %}{{ ansible_distribution }}_{% 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 %}_{% 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 }}"