mirror of
https://github.com/willshersystems/ansible-sshd
synced 2024-11-13 23:10:19 +01:00
42 lines
1.6 KiB
YAML
42 lines
1.6 KiB
YAML
---
|
|
- 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: Set OS dependent variables
|
|
ansible.builtin.include_vars: "{{ lookup('first_found', params) }}"
|
|
vars:
|
|
ansible_distribution_lts_offset: >-
|
|
{{
|
|
ansible_distribution_major_version | int % 2
|
|
if ansible_distribution == "Ubuntu"
|
|
else 0
|
|
}}
|
|
ansible_distribution_lts_version: >-
|
|
{{
|
|
ansible_distribution_major_version | int -
|
|
ansible_distribution_lts_offset | int
|
|
if ansible_distribution == "Ubuntu"
|
|
else ansible_distribution_version
|
|
}}
|
|
params:
|
|
files:
|
|
- "{{ ansible_distribution }}_{{ ansible_distribution_lts_version }}.yml"
|
|
- "{{ ansible_os_family }}_{{ ansible_distribution_major_version }}.yml"
|
|
- "{{ ansible_distribution }}.yml"
|
|
- "{{ ansible_os_family }}.yml"
|
|
- main.yml # fallback, vars/main.yml is always loaded by Ansible
|
|
paths:
|
|
- "{{ role_path }}/vars"
|
|
- "{{ playbook_dir }}/vars"
|
|
|
|
- name: Convert variables to facts for testing with old Ansible versions (pre 2.7)
|
|
# If such versions are not needed to be supported anymore, this task should be
|
|
# removed and `public: true` should be set in the `include_role` tasks
|
|
# wherever the variables below are needed.
|
|
ansible.builtin.set_fact:
|
|
__sshd_skip_virt_env: "{{ __sshd_skip_virt_env }}"
|
|
__sshd_config_file: "{{ __sshd_config_file }}"
|
|
when: __sshd_testing | bool
|