mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
14 lines
482 B
YAML
14 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', '>=')
|