mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
482 B
YAML
14 lines
482 B
YAML
6 years ago
|
- 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', '>=')
|