2018-08-25 23:39:06 +02:00
|
|
|
---
|
2022-08-17 14:05:10 +02:00
|
|
|
- name: Ensure ansible_facts used by role
|
|
|
|
ansible.builtin.setup:
|
|
|
|
gather_subset: min
|
|
|
|
when: not ansible_facts.keys() | list |
|
|
|
|
intersect(__sshd_required_facts) == __sshd_required_facts
|
2022-04-12 12:18:24 +02:00
|
|
|
|
2018-08-25 23:39:06 +02:00
|
|
|
- name: Set OS dependent variables
|
2022-06-03 12:22:17 +02:00
|
|
|
ansible.builtin.include_vars: "{{ lookup('first_found', params) }}"
|
2018-09-08 10:13:51 +02:00
|
|
|
vars:
|
2019-06-04 11:43:42 +02:00
|
|
|
ansible_distribution_lts_offset: >-
|
|
|
|
{{
|
2022-08-16 08:59:59 +02:00
|
|
|
ansible_distribution_major_version | int % 2
|
2019-06-04 11:43:42 +02:00
|
|
|
if ansible_distribution == "Ubuntu"
|
|
|
|
else 0
|
|
|
|
}}
|
2019-09-30 19:57:15 +02:00
|
|
|
ansible_distribution_lts_version: >-
|
|
|
|
{{
|
2022-08-16 08:59:59 +02:00
|
|
|
ansible_distribution_major_version | int -
|
|
|
|
ansible_distribution_lts_offset | int
|
2019-09-30 19:57:15 +02:00
|
|
|
if ansible_distribution == "Ubuntu"
|
|
|
|
else ansible_distribution_version
|
|
|
|
}}
|
2019-06-04 11:43:42 +02:00
|
|
|
params:
|
|
|
|
files:
|
2019-02-25 21:45:15 +01:00
|
|
|
- "{{ ansible_distribution }}_{{ ansible_distribution_lts_version }}.yml"
|
2020-09-21 17:11:28 +02:00
|
|
|
- "{{ ansible_os_family }}_{{ ansible_distribution_major_version }}.yml"
|
2020-11-23 18:50:01 +01:00
|
|
|
- "{{ ansible_distribution }}.yml"
|
2019-02-25 21:45:15 +01:00
|
|
|
- "{{ ansible_os_family }}.yml"
|
2022-08-17 14:05:10 +02:00
|
|
|
- main.yml # fallback, vars/main.yml is always loaded by Ansible
|
2019-02-25 21:45:15 +01:00
|
|
|
paths:
|
2020-11-04 21:29:48 +01:00
|
|
|
- "{{ role_path }}/vars"
|
|
|
|
- "{{ playbook_dir }}/vars"
|