From 81e5837fda41c2e20c413c02b8b663705367e2bc Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Wed, 13 Aug 2025 10:00:35 +0200 Subject: [PATCH] disable gpgcheck on openh264 repo for rawhide Until https://pagure.io/releng/issue/12880 is addressed. Signed-off-by: Adam Williamson --- lib/utils.pm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/utils.pm b/lib/utils.pm index 98062c4b..621ce30f 100644 --- a/lib/utils.pm +++ b/lib/utils.pm @@ -779,6 +779,9 @@ sub _repo_setup_updates { } sub repo_setup { + # FIXME F43 BRANCHING HACK: disable gpgcheck for openh264 repo + # this is needed till f44 openh264 repo is set up and MM updated + script_run 'sed -i -e "s,gpgcheck=1,gpgcheck=0,g" /etc/yum.repos.d/fedora-cisco-openh264.repo' if (get_var("VERSION") eq "44"); # Run the appropriate sub-function for the job get_var("ADVISORY_OR_TASK") ? _repo_setup_updates : _repo_setup_compose; }