Merge pull request #1601 from mattroot/master

Remove Podman-Docker compatibility layer when installing
This commit is contained in:
Marco Ochse 2024-07-11 13:28:33 +02:00 committed by GitHub
commit f41c15ec10
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -287,7 +287,7 @@
become: true become: true
tasks: tasks:
- name: Remove distribution based Docker packages (AlmaLinux, Debian, Fedora, Raspbian, Rocky, Ubuntu) - name: Remove distribution based Docker packages and podman-docker (AlmaLinux, Debian, Fedora, Raspbian, Rocky, Ubuntu)
package: package:
name: name:
- docker - docker
@ -295,6 +295,8 @@
- docker.io - docker.io
- containerd - containerd
- runc - runc
- podman-docker
- podman
state: absent state: absent
update_cache: yes update_cache: yes
when: ansible_distribution in ["AlmaLinux", "Debian", "Fedora", "Raspbian", "Rocky", "Ubuntu"] when: ansible_distribution in ["AlmaLinux", "Debian", "Fedora", "Raspbian", "Rocky", "Ubuntu"]