ansible-sshd/tasks/variables.yml

46 lines
1.6 KiB
YAML
Raw Normal View History

---
- 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
- 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 }}"
- 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:
_distribution_lts_offset: >-
2019-06-04 11:43:42 +02:00
{{
ansible_facts['distribution_major_version'] | int % 2
if ansible_facts['distribution'] == "Ubuntu"
2019-06-04 11:43:42 +02:00
else 0
}}
_distribution_lts_version: >-
{{
ansible_facts['distribution_major_version'] | int -
_distribution_lts_offset | int
if ansible_facts['distribution'] == "Ubuntu"
else ansible_facts['distribution_version']
}}
2019-06-04 11:43:42 +02:00
params:
files:
- "{{ 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"
- main.yml # fallback, vars/main.yml is always loaded by Ansible
paths:
- "{{ role_path }}/vars"
- "{{ playbook_dir }}/vars"