6b2b876d43
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.
9 lines
286 B
YAML
9 lines
286 B
YAML
- name: remove podman packages
|
|
yum:
|
|
name: 'podman*'
|
|
state: absent
|
|
listen: cleanup podman
|
|
|
|
- name: remove extras repo
|
|
command: "{{ repo_command[ansible_facts.distribution ~ ansible_facts.distribution_major_version]['disable'] | default('echo') }}"
|
|
listen: cleanup podman
|