From 4100b59562c049af96539cf269d44023bfa592a2 Mon Sep 17 00:00:00 2001 From: Lokesh Mandvekar Date: Fri, 21 Aug 2026 09:23:27 -0400 Subject: [PATCH] tmt: Allow vendor changes for podman-next COPR Fedora 45 onwards disables vendor changes by default. This enables vendor changes to support the podman-next COPR repository. Ref: https://fedoraproject.org/wiki/Changes/DisableVendorChangeByDefault Signed-off-by: Lokesh Mandvekar --- contrib/packit-tmt/update-deps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/packit-tmt/update-deps.sh b/contrib/packit-tmt/update-deps.sh index 50fa90b832..be1b258bb3 100644 --- a/contrib/packit-tmt/update-deps.sh +++ b/contrib/packit-tmt/update-deps.sh @@ -9,4 +9,4 @@ fi # This should work even when podman-next isn't installed. It'll fetch the # highest versions available across all repos. -dnf -y upgrade --allowerasing "${DISABLE_REPO[@]}" --exclude=podman* +dnf -y upgrade --allowerasing --setopt=allow_vendor_change=1 "${DISABLE_REPO[@]}" --exclude=podman*