From f31d5b3f7315f934c787b0b8f60e0c3a992a9171 Mon Sep 17 00:00:00 2001 From: Mateusz Korzeniewski Date: Fri, 28 Jun 2024 12:02:12 +0200 Subject: [PATCH 1/2] installer: remove podman-docker --- installer/install/tpot.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/installer/install/tpot.yml b/installer/install/tpot.yml index 638fe6ba..543c2480 100644 --- a/installer/install/tpot.yml +++ b/installer/install/tpot.yml @@ -287,14 +287,15 @@ become: true 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: name: - docker - docker-engine - docker.io - - containerd + - containerd - runc + - podman-docker state: absent update_cache: yes when: ansible_distribution in ["AlmaLinux", "Debian", "Fedora", "Raspbian", "Rocky", "Ubuntu"] From 12da07b0c2216086ae850b3aaea9aaa28323830f Mon Sep 17 00:00:00 2001 From: Mateusz Korzeniewski Date: Tue, 2 Jul 2024 23:03:30 +0000 Subject: [PATCH 2/2] installer: remove podman --- installer/install/tpot.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/installer/install/tpot.yml b/installer/install/tpot.yml index 543c2480..78631670 100644 --- a/installer/install/tpot.yml +++ b/installer/install/tpot.yml @@ -296,6 +296,7 @@ - containerd - runc - podman-docker + - podman state: absent update_cache: yes when: ansible_distribution in ["AlmaLinux", "Debian", "Fedora", "Raspbian", "Rocky", "Ubuntu"]