From d4da8864cf6a488322a7cdb120707a7bf16fa8c8 Mon Sep 17 00:00:00 2001 From: Nikita Dubrovskii Date: Wed, 30 Oct 2024 10:36:26 +0100 Subject: [PATCH] dnf5: use 'setopt' to enable 'updates-testing' repo --- ci/buildroot/install-buildroot.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/buildroot/install-buildroot.sh b/ci/buildroot/install-buildroot.sh index 2809b8a8f7..8c7be2579c 100755 --- a/ci/buildroot/install-buildroot.sh +++ b/ci/buildroot/install-buildroot.sh @@ -5,7 +5,7 @@ set -euo pipefail dnf -y install dnf-plugins-core # We want to avoid a 7 day cycle for e.g. new ostree etc. -dnf config-manager --set-enabled updates-testing +dnf config-manager setopt updates-testing.enabled=1 dn=$(dirname "$0") tmpd=$(mktemp -d) && trap 'rm -rf ${tmpd}' EXIT