From f3f0ce0d355436416deab054d6b61feedbe9ae3a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lubom=C3=ADr=20Sedl=C3=A1=C5=99?= Date: Wed, 13 Jan 2016 08:52:06 +0100 Subject: [PATCH] Fix filtering of system release packages MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The code was inconsistent with the documentation: the logic was inverted. Signed-off-by: Lubomír Sedlář --- pungi/phases/gather/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pungi/phases/gather/__init__.py b/pungi/phases/gather/__init__.py index 09c6e4fc..84ffd414 100644 --- a/pungi/phases/gather/__init__.py +++ b/pungi/phases/gather/__init__.py @@ -451,7 +451,7 @@ def get_variant_packages(compose, arch, variant, package_sets=None): packages |= get_additional_packages(compose, arch, variant) filter_packages |= get_filter_packages(compose, arch, variant) - if not compose.conf.get('filter_system_release_packages', False): + if compose.conf.get('filter_system_release_packages', True): system_release_packages, system_release_filter_packages = get_system_release_packages( compose, arch, variant, package_sets) packages |= system_release_packages