ansible/test/integration/targets/setup_podman/tasks/main.yml
Sam Doran 6b2b876d43
Make Docker and Podman play nice (#65009)
podman 1.4 now installs docker man pages. Add handler to remove docker packages to avoid test failure due to this conflict.

Adjust inventory_docker_swarm integration test
Add conditional to cleanup handlers to allow use of the setup_docker role without removing packages at the end of the play. The inventory_docker_swarm integration tests does its own cleanup.
2019-11-18 15:08:58 -05:00

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', '>=')