mirror of
https://github.com/willshersystems/ansible-sshd
synced 2024-11-21 18:40:19 +01:00
Drop "ansible" from variable names
Keep ansible variable namespace for upstream only.
This commit is contained in:
parent
729a1b010f
commit
29efda347b
1 changed files with 4 additions and 4 deletions
|
@ -8,22 +8,22 @@
|
|||
- name: Set OS dependent variables
|
||||
ansible.builtin.include_vars: "{{ lookup('first_found', params) }}"
|
||||
vars:
|
||||
ansible_distribution_lts_offset: >-
|
||||
_distribution_lts_offset: >-
|
||||
{{
|
||||
ansible_distribution_major_version | int % 2
|
||||
if ansible_distribution == "Ubuntu"
|
||||
else 0
|
||||
}}
|
||||
ansible_distribution_lts_version: >-
|
||||
_distribution_lts_version: >-
|
||||
{{
|
||||
ansible_distribution_major_version | int -
|
||||
ansible_distribution_lts_offset | int
|
||||
_distribution_lts_offset | int
|
||||
if ansible_distribution == "Ubuntu"
|
||||
else ansible_distribution_version
|
||||
}}
|
||||
params:
|
||||
files:
|
||||
- "{{ ansible_distribution }}_{{ ansible_distribution_lts_version }}.yml"
|
||||
- "{{ ansible_distribution }}_{{ _distribution_lts_version }}.yml"
|
||||
- "{{ ansible_os_family }}_{{ ansible_distribution_major_version }}.yml"
|
||||
- "{{ ansible_distribution }}.yml"
|
||||
- "{{ ansible_os_family }}.yml"
|
||||
|
|
Loading…
Reference in a new issue