Ansible-Roles/roles/certbot/tasks/include-vars.yml
2026-05-08 22:12:36 +03:00

9 lines
338 B
YAML

---
- name: Load a variable file based on the OS type, or a default if not found.
ansible.builtin.include_vars: "{{ item }}"
with_first_found:
- "{{ ansible_facts.distribution }}-{{ ansible_facts.distribution_version }}.yml"
- "{{ ansible_facts.distribution }}.yml"
- "{{ ansible_facts.os_family }}.yml"
- default.yml