From 84b71edf51a15703cf19ddcd7bda6b101f9e737e Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Sat, 13 Jul 2024 11:04:47 -0700 Subject: [PATCH] koji_builder: try telling dnf to download filelists in prod This sort of seemed to work in staging (although there is some issue with staging koji). So, lets try it in production. It will make all the boostrap repo regens a little slower, but it should get epel8 back working hopefully for now. Signed-off-by: Kevin Fenzi --- roles/koji_builder/templates/builders/site-defaults.cfg | 4 ---- 1 file changed, 4 deletions(-) diff --git a/roles/koji_builder/templates/builders/site-defaults.cfg b/roles/koji_builder/templates/builders/site-defaults.cfg index 94141f82e2..34f62ddbf3 100644 --- a/roles/koji_builder/templates/builders/site-defaults.cfg +++ b/roles/koji_builder/templates/builders/site-defaults.cfg @@ -1,10 +1,6 @@ config_opts['plugin_conf']['package_state_enable'] = False config_opts['plugin_conf']['ccache_enable'] = False -{% if env == "staging" %} config_opts['dnf_common_opts'] = ['--setopt=install_weak_deps=0', '--setopt=optional_metadata_types=filelists'] -{% else %} -config_opts['dnf_common_opts'] = ['--setopt=install_weak_deps=0'] -{% endif %} config_opts['macros']['%bugurl'] = 'https://bugz.fedoraproject.org/%name' #config_opts['nosync'] = True #config_opts['nosync_force'] = True