blob: 685cd797bb58331618e16de636c666e5e61f2aa8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
---
- name: ldap_certs get vars
include_vars: default.yml
- name: ldap_certs get OS vars
include_vars: '{{ item }}'
with_first_found:
- '{{ ansible_distribution }}.yml'
- default.yml
- name: ldap_certs get host-specific vars
include_vars: '{{ item }}'
with_first_found:
- files:
- 'roles/ldap_certs/hosts/{{ ansible_fqdn }}.yml'
skip: true
|