From 491fcc972dde8efbe1b047806bd1c9bbc529db02 Mon Sep 17 00:00:00 2001 From: Tomasz Skiba Date: Tue, 9 Feb 2021 20:36:31 +0100 Subject: [PATCH] Ensure podman and Buildah are not installed Presence of buildah and podman creates dependency issue for runc and makes the role fail --- tasks/setup-RedHat.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tasks/setup-RedHat.yml b/tasks/setup-RedHat.yml index 676c9e5..d80ba90 100644 --- a/tasks/setup-RedHat.yml +++ b/tasks/setup-RedHat.yml @@ -1,10 +1,12 @@ --- -- name: Ensure old versions of Docker are not installed. +- name: Ensure Podman, Buildah and old versions of Docker are not installed. package: name: - docker - docker-common - docker-engine + - podman + - buildah state: absent - name: Add Docker GPG key.