mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-04-16 10:13:26 +02:00
15 lines
498 B
YAML
15 lines
498 B
YAML
---
|
|
- include_vars: "{{ item }}"
|
|
with_first_found:
|
|
- "{{ role_path }}/vars/{{ ansible_distribution }}-{{ ansible_distribution_major_version }}.yml"
|
|
- "{{ role_path }}/vars/{{ ansible_os_family }}-{{ ansible_distribution_major_version }}.yml"
|
|
- "{{ role_path }}/vars/{{ ansible_distribution }}.yml"
|
|
- "{{ role_path }}/vars/{{ ansible_os_family }}.yml"
|
|
tags: ssh
|
|
|
|
- name: Combine SSH users
|
|
set_fact:
|
|
ssh_users: "{{ ssh_users + ssh_extra_users | default([]) }}"
|
|
tags: ssh
|
|
|