mirror of
https://github.com/willshersystems/ansible-sshd
synced 2024-11-05 11:23:29 +01:00
065812b345
In order to collect variables, it's worth using ansible_distribution_major_version as ansible_distribution_version changes behaviour between ansible releases, ie [1] This causes CentOS jobs fail with 2.8.13, as ansible_distribution_version there is '7.8' [2] [1] https://github.com/ansible/ansible/issues/57463 [2] https://zuul.opendev.org/t/openstack/build/e5ae88e08ac546ccb0e7ab99f8f0a051/log/zuul-info/host-info.centos-7.yaml#141
62 lines
2 KiB
YAML
62 lines
2 KiB
YAML
---
|
|
- name: Set OS dependent variables
|
|
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_distribution }}.yml"
|
|
- "{{ ansible_os_family }}_{{ ansible_distribution_major_version }}.yml"
|
|
- "{{ ansible_os_family }}.yml"
|
|
- default.yml
|
|
paths:
|
|
- '{{ role_path }}/vars'
|
|
- '{{ playbook_dir }}/vars'
|
|
|
|
- name: Override OS defaults
|
|
block:
|
|
- name: Define sshd_packages
|
|
set_fact:
|
|
sshd_packages: "{{ __sshd_packages }}"
|
|
when: sshd_packages is not defined
|
|
- name: Define sshd_config_owner
|
|
set_fact:
|
|
sshd_config_owner: "{{ __sshd_config_owner }}"
|
|
when: sshd_config_owner is not defined
|
|
- name: Define sshd_config_group
|
|
set_fact:
|
|
sshd_config_group: "{{ __sshd_config_group }}"
|
|
when: sshd_config_group is not defined
|
|
- name: Define sshd_config_mode
|
|
set_fact:
|
|
sshd_config_mode: "{{ __sshd_config_mode }}"
|
|
when: sshd_config_mode is not defined
|
|
- name: Define sshd_config_file
|
|
set_fact:
|
|
sshd_config_file: "{{ __sshd_config_file }}"
|
|
when: sshd_config_file is not defined
|
|
- name: Define sshd_binary
|
|
set_fact:
|
|
sshd_binary: "{{ __sshd_binary }}"
|
|
when: sshd_binary is not defined
|
|
- name: Define sshd_service
|
|
set_fact:
|
|
sshd_service: "{{ __sshd_service }}"
|
|
when: sshd_service is not defined
|
|
- name: Define sshd_sftp_server
|
|
set_fact:
|
|
sshd_sftp_server: "{{ __sshd_sftp_server }}"
|
|
when: sshd_sftp_server is not defined
|