17 lines
474 B
YAML
17 lines
474 B
YAML
- name: Load devpod variables if DEVPOD is true
|
|
include_vars: "{{ item }}"
|
|
with_first_found:
|
|
- "vars/devpod.yml"
|
|
when: DEVPOD
|
|
|
|
#- name: Load a variable file
|
|
# include_vars: "{{ item }}"
|
|
# with_first_found:
|
|
# - "vars/{{ ansible_distribution }}-{{ ansible_distribution_version }}.yml"
|
|
# - "vars/{{ ansible_distribution }}.yml"
|
|
# - "vars/{{ ansible_os_family }}.yml"
|
|
# - "vars/defaults.yml"
|
|
# when: not DEVPOD
|
|
|
|
- name:
|
|
include_tasks: "defaults.yml"
|