2
0
Fork 0

Fix with_first_found fail when ansible_distribution vars file is missing (issue #5)

This commit is contained in:
Djerfy 2021-01-13 16:57:05 +01:00 committed by Gardais Jérémy
parent 3153efe24b
commit d80f5e5a2c
Signed by: jegardai
GPG Key ID: E759BAA22501AF32
1 changed files with 12 additions and 8 deletions

View File

@ -4,8 +4,10 @@
# tasks file for fusioninventory
- name: Include package list per OS
include_vars: "{{ item }}"
with_first_found:
include_vars: "{{ lookup('first_found', params) }}"
vars:
params:
files:
- "{{ ansible_distribution }}.yml"
- "{{ ansible_os_family }}.yml"
@ -23,8 +25,10 @@
# Manage agent package [[[1
# Specific tasks per OS will be in the include otherwise below
- include: "{{ item }}"
with_first_found:
- include: "{{ lookup('first_found', params) }}"
vars:
params:
files:
- "{{ ansible_distribution }}.yml"
- "{{ ansible_os_family }}.yml"