From c6d63679327e91097c53dd3bf4a08ef5caae0d82 Mon Sep 17 00:00:00 2001 From: Lubomír Sedlář Date: Jul 22 2019 10:35:36 +0000 Subject: gather: Mark repos as containing module hotfixes This should prevent DNF from doing any unwanted magic with the contents. Ideally we want it to completely ignore the modular metadata in there, but there seems to be no way to do that. This should at least prevent it from hiding non-modular packages that are masked by some default stream. Fixes: https://pagure.io/pungi/issue/1241 Signed-off-by: Lubomír Sedlář --- diff --git a/pungi/dnf_wrapper.py b/pungi/dnf_wrapper.py index cef9c39..798b2f8 100644 --- a/pungi/dnf_wrapper.py +++ b/pungi/dnf_wrapper.py @@ -59,6 +59,7 @@ class DnfWrapper(dnf.Base): baseurl=[baseurl], enabledgroups=enablegroups, priority=10 if lookaside else 20, + module_hotfixes=True, )