From c3b98144afdd1327f52912369aa756d4a3badf3b Mon Sep 17 00:00:00 2001 From: Maxwell G Date: Thu, 22 Jun 2023 04:08:30 +0000 Subject: [PATCH] images/fedora: don't use dnf install --refresh The --refresh flag is not supported by dnf5 which is now the default in Fedora Rawhide. The fedora/rawhide image is completely broken without this change. --- images/fedora/functions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/images/fedora/functions b/images/fedora/functions index 86d63af..21ae958 100644 --- a/images/fedora/functions +++ b/images/fedora/functions @@ -14,7 +14,7 @@ boot() { install() { port=$1 shift 1 - guest_ssh -p $port build@localhost sudo dnf --refresh -y install "$@" + guest_ssh -p $port build@localhost sudo dnf -y install "$@" } add_repository() { -- 2.38.5