From e98c9490198d9dfca34cfeef8e9a59b5d2ae3225 Mon Sep 17 00:00:00 2001 From: "Han Verstraete (OpenFaaS Ltd)" Date: Tue, 20 May 2025 14:37:39 +0200 Subject: [PATCH] Add allowerasing flag to dnf install Fixes issues with conflicting packages that may occur on some systems. Signed-off-by: Han Verstraete (OpenFaaS Ltd) --- hack/install-edge.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hack/install-edge.sh b/hack/install-edge.sh index 5475f9b..93678f1 100644 --- a/hack/install-edge.sh +++ b/hack/install-edge.sh @@ -38,7 +38,7 @@ install_required_packages() { apt-get update -yq apt-get install -yq curl runc bridge-utils iptables iptables-persistent elif $(has_dnf); then - dnf install -y curl runc iptables-services bridge-utils which + dnf install -y --allowerasing curl runc iptables-services bridge-utils which elif $(has_pacman); then pacman -Syy pacman -Sy curl runc bridge-utils