Skip to content

Commit

Permalink
Fix variable matching with ansible_lsb.id Ref #224
Browse files Browse the repository at this point in the history
  • Loading branch information
mkayontour committed Nov 30, 2023
1 parent 0892966 commit 7cf705c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion roles/repos/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
- "{{ ansible_os_family }}-{{ ansible_distribution }}-{{ ansible_distribution_major_version }}.yml"
- "{{ ansible_os_family }}-{{ ansible_distribution_major_version }}.yml"
- "{{ ansible_os_family }}-{{ ansible_distribution }}.yml"
- "{{ ansible_os_family }}-{{ ansible_lsb.id }}.yml"
- "{{ ansible_os_family }}-{{ ansible_lsb.id if ansible_lsb.id is defined else ansible_distribution }}.yml"
- "{{ ansible_os_family }}.yml"
- default.yml
paths:
Expand Down

0 comments on commit 7cf705c

Please sign in to comment.