From 601d0c4f96b3979fade57840135818927f40505c Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Sat, 5 Aug 2023 09:44:13 +0100 Subject: [PATCH] Disable modular repos for Rawhide upgrades to avoid #2228827 As 'real' upgrades (using releases/development/rawhide on the mirrors) do not hit this bug because it has a stale Modular tree, it makes sense to work around the bug in testing so we can see if upgrades are broken in any *other* way. Signed-off-by: Adam Williamson --- tests/upgrade_run.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/upgrade_run.pm b/tests/upgrade_run.pm index 1a5a9a19..7fa46412 100644 --- a/tests/upgrade_run.pm +++ b/tests/upgrade_run.pm @@ -18,7 +18,7 @@ sub run { repo_setup(); my $params = "-y --releasever=${relnum}"; if ($release eq "rawhide") { - $params .= " --nogpgcheck"; + $params .= " --nogpgcheck --disablerepo=*modular*"; } if (script_run "dnf ${params} system-upgrade download", 6000) {