mirror of
https://github.com/willshersystems/ansible-sshd
synced 2024-11-08 21:03:29 +01:00
66785690fa
Use facts via ansible_facts only. Made using: git ls-files -z|grep -z yml|xargs -0r sed --follow-symlinks -Ei \ "s/ansible_(virtualization_type|os_family|distribution\w*)/ansible_facts['\1']/g"
33 lines
1.2 KiB
YAML
33 lines
1.2 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:
|
|
_distribution_lts_offset: >-
|
|
{{
|
|
ansible_facts['distribution_major_version'] | int % 2
|
|
if ansible_facts['distribution'] == "Ubuntu"
|
|
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']
|
|
}}
|
|
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"
|