From f40ad8262a75e9c8ae58d2be93eb0736cc2a9493 Mon Sep 17 00:00:00 2001 From: Carl George Date: Fri, 27 Sep 2024 02:24:00 -0500 Subject: [PATCH] koji_builder / mock site defaults: remove filelists option An explicit provides for /usr/libexec/platform-python was added to platform-python in RHEL 8. https://access.redhat.com/errata/RHSA-2024:6975 This solves the original reason for needing the filelists option, so it should be safe to remove. This will make bootstrap chroot creation faster for all builds, not just EPEL 8. https://pagure.io/releng/issue/12199 Signed-off-by: Carl George --- roles/koji_builder/templates/builders/site-defaults.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/koji_builder/templates/builders/site-defaults.cfg b/roles/koji_builder/templates/builders/site-defaults.cfg index d4d623fe5e..5488f5bf3f 100644 --- a/roles/koji_builder/templates/builders/site-defaults.cfg +++ b/roles/koji_builder/templates/builders/site-defaults.cfg @@ -1,6 +1,6 @@ config_opts['plugin_conf']['package_state_enable'] = False config_opts['plugin_conf']['ccache_enable'] = False -config_opts['dnf_common_opts'] = ['--setopt=install_weak_deps=0', '--setopt=optional_metadata_types=filelists'] +config_opts['dnf_common_opts'] = ['--setopt=install_weak_deps=0'] config_opts['macros']['%bugurl'] = 'https://bugz.fedoraproject.org/%name' #config_opts['nosync'] = True #config_opts['nosync_force'] = True