2019-04-11 01:28:09 +02:00
|
|
|
- block:
|
2019-07-30 21:11:35 +02:00
|
|
|
- name: Include distribution specific variables
|
|
|
|
include_vars: "{{ ansible_facts.distribution }}-{{ ansible_facts.distribution_major_version }}.yml"
|
|
|
|
|
2019-04-11 01:28:09 +02:00
|
|
|
- name: Enable extras repo
|
|
|
|
command: "{{ repo_command[ansible_facts.distribution ~ ansible_facts.distribution_major_version] | default('echo') }}"
|
|
|
|
|
|
|
|
- name: Install podman
|
|
|
|
yum:
|
2019-07-30 21:11:35 +02:00
|
|
|
name: "{{ podman_package }}"
|
2019-04-11 01:28:09 +02:00
|
|
|
state: present
|
|
|
|
when: ansible_facts.pkg_mgr in ['yum', 'dnf']
|
|
|
|
when:
|
|
|
|
- ansible_facts.distribution == 'RedHat'
|
|
|
|
- ansible_facts.virtualization_type != 'docker'
|
|
|
|
- ansible_facts.distribution_major_version is version_compare('7', '>=')
|