From 4d858ef958d8e5e541ec09f92fb304f6da9f4294 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lubom=C3=ADr=20Sedl=C3=A1=C5=99?= Date: Thu, 15 Feb 2024 15:23:49 +0100 Subject: [PATCH] dnf: Load filelists for actual solver too MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Not just in tests. Signed-off-by: Lubomír Sedlář (cherry picked from commit 209d308e1c881b6f5ed2b5904481a7d0f3ad478a) --- pungi/scripts/pungi_gather.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pungi/scripts/pungi_gather.py b/pungi/scripts/pungi_gather.py index 232d54b7..4689a8bc 100644 --- a/pungi/scripts/pungi_gather.py +++ b/pungi/scripts/pungi_gather.py @@ -97,6 +97,7 @@ def main(ns, persistdir, cachedir): dnf_conf = Conf(ns.arch) dnf_conf.persistdir = persistdir dnf_conf.cachedir = cachedir + dnf_conf.optional_metadata_types = ["filelists"] dnf_obj = DnfWrapper(dnf_conf) gather_opts = GatherOptions()