blob: f13f99f58eafafa46960f1ef8512faeebdb14491 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
---
- name: "Gather OS specific variables"
include_vars: "{{ item }}"
with_first_found:
- "{{ ansible_distribution|lower }}-{{ ansible_distribution_version }}.yml"
- "{{ ansible_distribution|lower }}-{{ ansible_distribution_major_version }}.yml"
- "{{ ansible_distribution|lower }}.yml"
- "{{ ansible_os_family|lower }}.yml"
- include_tasks: configure_yum.yml
when: ansible_pkg_mgr == 'yum'
- include_tasks: configure_dnf.yml
when: ansible_pkg_mgr == 'dnf'
- include_tasks: configure_apt.yml
when: ansible_pkg_mgr == 'apt'
- include_tasks: install_docker.yml
when: ansible_pkg_mgr == 'yum' or ansible_pkg_mgr == 'apt'
- include_tasks: install_podman.yml
when: ansible_pkg_mgr == 'dnf'
|