From b2a38f196288ad61d9e27ceb63cb62d901ed42a5 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Sat, 5 Dec 2020 20:31:18 -0800 Subject: [PATCH] koji_builder: enable bootstrap mode We need this because f33 rpm switches to sqlite. So, fedora builds are fine, but epel builds install the buildroot with f33 rpm/sqlite and then the epel rpm/yum don't know what to do. This causes mock to make a bootstrap chroot made with the rpm/yum/dnf of the target and use that to build everyhing after with. 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 2f9d230a97..6eeebcc4c6 100644 --- a/roles/koji_builder/templates/builders/site-defaults.cfg +++ b/roles/koji_builder/templates/builders/site-defaults.cfg @@ -5,10 +5,6 @@ config_opts['macros']['%bugurl'] = 'https://bugz.fedoraproject.org/%name' config_opts['nosync'] = True config_opts['nosync_force'] = True config_opts['environment']['LANG'] = 'C.UTF-8' -{% if env == "production" %} -config_opts['use_bootstrap'] = False -{% else %} config_opts['use_bootstrap'] = True config_opts['yum_install_command'] += " --disablerepo=rhel7-server-devtools" -{% endif %} config_opts['dnf_warning'] = False