c2be342ce1
* Add podman_image and podman_image_info modules * Add integration test for podman_image_info * Change parameter names per feedback * Add integration tests for podman_image
13 lines
482 B
YAML
13 lines
482 B
YAML
- block:
|
|
- name: Enable extras repo
|
|
command: "{{ repo_command[ansible_facts.distribution ~ ansible_facts.distribution_major_version] | default('echo') }}"
|
|
|
|
- name: Install podman
|
|
yum:
|
|
name: podman
|
|
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', '>=')
|