2019-04-11 01:28:09 +02:00
|
|
|
- block:
|
|
|
|
- name: Enable extras repo
|
2019-11-18 21:08:58 +01:00
|
|
|
command: "{{ repo_command[ansible_facts.distribution ~ ansible_facts.distribution_major_version]['enable'] | default('echo') }}"
|
|
|
|
notify: cleanup podman
|
2019-04-11 01:28:09 +02:00
|
|
|
|
|
|
|
- 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']
|
2019-11-18 21:08:58 +01:00
|
|
|
notify: cleanup podman
|
2019-11-17 18:45:10 +01:00
|
|
|
|
|
|
|
- name: Get podman version
|
|
|
|
command: podman --version
|
|
|
|
|
2019-04-11 01:28:09 +02:00
|
|
|
when:
|
|
|
|
- ansible_facts.distribution == 'RedHat'
|
|
|
|
- ansible_facts.virtualization_type != 'docker'
|
|
|
|
- ansible_facts.distribution_major_version is version_compare('7', '>=')
|