mirror of
https://github.com/geerlingguy/ansible-role-docker.git
synced 2025-08-15 13:48:28 +02:00
setup-RedHat.yml - Remove podman-manpages for centos-8.1
On CentOS-8.1, docker installation conflicts with podman-manpages - see https://github.com/containers/podman/issues/4791. Add a workaround which removes podman-manpages for CentOS 8.1. Signed-off-by: Tomer Eliyahu <tomer.b.eliyahu@email.com>
This commit is contained in:
parent
fa52c5f28b
commit
5a09db359d
@ -7,6 +7,13 @@
|
||||
- docker-engine
|
||||
state: absent
|
||||
|
||||
# See https://github.com/containers/podman/issues/4791
|
||||
- name: Remove conflicting podman-manpages (conflits with docker on CentOS 8.1)
|
||||
package:
|
||||
name: podman-manpages
|
||||
state: absent
|
||||
when: ansible_distribution == "CentOS" and ansible_distribution_version == "8.1"
|
||||
|
||||
- name: Add Docker GPG key.
|
||||
rpm_key:
|
||||
key: "{{ docker_yum_gpg_key }}"
|
||||
|
Loading…
Reference in New Issue
Block a user