bodhi / pungi: disallow pkg reuse in updates pungi runs

This should prevent a recent issue where a unsigned package managed to
get synced out. The package was mistagged, was fixed, but then it's
cached signed copies had been garbage collected. This caused the push to
fail, but then the resumed one didn't regather the signed version of
that package, and instead just reused the unsigned one.
Setting this should prevent pungi from doing any package reuse here,
which is fine as updates don't reuse packages.
See https://pagure.io/pungi/issue/1480 for more information.

Signed-off-by: Kevin Fenzi <kevin@scrye.com>
This commit is contained in:
Kevin Fenzi 2021-01-07 10:53:54 -08:00
parent e566318411
commit b76dd79a6c

View file

@ -58,6 +58,7 @@ runroot_tag = 'f[[ release.version_int ]]-build'
pkgset_source = 'koji' # koji, repos pkgset_source = 'koji' # koji, repos
pkgset_koji_tag = '[[ id ]]' pkgset_koji_tag = '[[ id ]]'
pkgset_koji_inherit = False pkgset_koji_inherit = False
pkgset_allow_reuse = False
filter_system_release_packages = False filter_system_release_packages = False
# GATHER # GATHER