mirror of
https://github.com/containers/ansible-podman-collections.git
synced 2026-02-04 07:11:49 +00:00
19 lines
631 B
YAML
19 lines
631 B
YAML
- block:
|
|
- name: Enable extras repo
|
|
command: "{{ repo_command[ansible_facts.distribution ~ ansible_facts.distribution_major_version]['enable'] | default('echo') }}"
|
|
notify: cleanup podman
|
|
|
|
- name: Install podman
|
|
yum:
|
|
name: "{{ podman_package }}"
|
|
state: present
|
|
when: ansible_facts.pkg_mgr in ['yum', 'dnf']
|
|
notify: cleanup podman
|
|
|
|
- name: Get podman version
|
|
command: podman --version
|
|
|
|
when:
|
|
- ansible_facts.distribution == 'RedHat'
|
|
- ansible_facts.virtualization_type != 'docker'
|
|
- ansible_facts.distribution_major_version is version_compare('7', '>=')
|