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

Drop versionlock stuff

We have a newer fixed kernel pushed stable now, so this should
no longer be needed.

Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
Adam Williamson 2025-07-12 13:37:27 -07:00
parent 0ef1d5710e
commit ec37fbae4d

View File

@ -732,19 +732,6 @@ sub _repo_setup_updates {
repos_mirrorlist(); repos_mirrorlist();
# Disable updates-testing so other bad updates don't break us # Disable updates-testing so other bad updates don't break us
disable_updates_repos(both => 0) if ($version > $currrel); disable_updates_repos(both => 0) if ($version > $currrel);
# HACK 2025-07: lock out known-bad kernel versions
if ($version eq "43") {
assert_script_run 'dnf versionlock exclude kernel-6.16.0-0.rc5.65.fc43';
assert_script_run 'dnf versionlock exclude kernel-core-6.16.0-0.rc5.65.fc43';
assert_script_run 'dnf versionlock exclude kernel-modules-6.16.0-0.rc5.65.fc43';
assert_script_run 'dnf versionlock exclude kernel-modules-core-6.16.0-0.rc5.65.fc43';
assert_script_run 'dnf versionlock exclude kernel-modules-extra-6.16.0-0.rc5.65.fc43';
if (get_var("ADVISORY_OR_TASK") eq "FEDORA-2025-14272e396a") {
assert_script_run 'dnf versionlock exclude kernel-tools-6.16.0-0.rc5.65.fc43';
assert_script_run 'dnf versionlock exclude kernel-tools-libs-6.16.0-0.rc5.65.fc43';
assert_script_run 'dnf versionlock exclude python3-perf-6.16.0-0.rc5.65.fc43';
}
}
# use the buildroot repo on Rawhide and Branched pre-ut-activation: # use the buildroot repo on Rawhide and Branched pre-ut-activation:
# see e.g. https://pagure.io/fedora-ci/general/issue/376 for why # see e.g. https://pagure.io/fedora-ci/general/issue/376 for why
my $brrepo = get_var("BUILDROOT_REPO"); my $brrepo = get_var("BUILDROOT_REPO");