Skip to content
This repository was archived by the owner on Mar 6, 2023. It is now read-only.

Commit 8a7af09

Browse files
authored
tasks: remove already covered entries when choosing an OS specific vars (#118)
* tasks: remove already covered entries when choosing an OS sepcific vars * tasks: bring in support for ClearLinux which was broken in #114
1 parent 6481372 commit 8a7af09

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tasks/main.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,9 @@
44
with_first_found:
55
- "{{ ansible_distribution | lower }}-{{ ansible_distribution_version | lower }}.yml"
66
- "{{ ansible_distribution | lower }}-{{ ansible_distribution_major_version | lower }}.yml"
7-
- "{{ ansible_distribution_file_variety | lower }}-{{ ansible_distribution_major_version | lower }}.yml"
87
- "{{ ansible_os_family | lower }}-{{ ansible_distribution_major_version | lower }}.yml"
8+
- "{{ ansible_distribution_file_variety | lower }}.yml"
99
- "{{ ansible_distribution | lower }}.yml"
10-
- "{{ ansible_os_family | lower }}-{{ ansible_distribution_version.split('.')[0] }}.yml"
1110
- "{{ ansible_os_family | lower }}.yml"
1211
tags:
1312
- node_exporter_install

0 commit comments

Comments
 (0)