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
|
|
|
|
2023-11-17 14:44:54 +01:00
|
|
|
- name: Determine if system is ostree and set flag
|
|
|
|
when: not __sshd_is_ostree is defined
|
|
|
|
block:
|
|
|
|
- name: Check if system is ostree
|
|
|
|
ansible.builtin.stat:
|
|
|
|
path: /run/ostree-booted
|
|
|
|
register: __ostree_booted_stat
|
|
|
|
|
|
|
|
- name: Set flag to indicate system is ostree
|
|
|
|
ansible.builtin.set_fact:
|
|
|
|
__sshd_is_ostree: "{{ __ostree_booted_stat.stat.exists }}"
|
|
|
|
|
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:
|
2023-08-05 11:42:59 +02:00
|
|
|
_distribution_lts_offset: >-
|
2019-06-04 11:43:42 +02:00
|
|
|
{{
|
2023-08-05 12:01:19 +02:00
|
|
|
ansible_facts['distribution_major_version'] | int % 2
|
|
|
|
if ansible_facts['distribution'] == "Ubuntu"
|
2019-06-04 11:43:42 +02:00
|
|
|
else 0
|
|
|
|
}}
|
2023-08-05 11:42:59 +02:00
|
|
|
_distribution_lts_version: >-
|
2019-09-30 19:57:15 +02:00
|
|
|
{{
|
2023-08-05 12:01:19 +02:00
|
|
|
ansible_facts['distribution_major_version'] | int -
|
2023-08-05 11:42:59 +02:00
|
|
|
_distribution_lts_offset | int
|
2023-08-05 12:01:19 +02:00
|
|
|
if ansible_facts['distribution'] == "Ubuntu"
|
|
|
|
else ansible_facts['distribution_version']
|
2019-09-30 19:57:15 +02:00
|
|
|
}}
|
2019-06-04 11:43:42 +02:00
|
|
|
params:
|
|
|
|
files:
|
2023-08-05 12:01:19 +02:00
|
|
|
- "{{ ansible_facts['distribution'] }}_{{ _distribution_lts_version }}.yml"
|
|
|
|
- "{{ ansible_facts['os_family'] }}_{{ ansible_facts['distribution_major_version'] }}.yml"
|
|
|
|
- "{{ ansible_facts['distribution'] }}.yml"
|
|
|
|
- "{{ ansible_facts['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"
|