1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2025-08-26 09:05:54 +00:00

disable gpgcheck on openh264 repo for rawhide

Until https://pagure.io/releng/issue/12880 is addressed.

Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
Adam Williamson 2025-08-13 10:00:35 +02:00
parent 9af87e9e05
commit 81e5837fda

View File

@ -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;
}