Remove configuration for devel modules

They should be loaded in the same way as regular modules straight from
Koji.

Signed-off-by: Lubomír Sedlář <lsedlar@redhat.com>
This commit is contained in:
Lubomír Sedlář 2019-03-18 13:05:53 +01:00
parent ac15f21135
commit 9f9b784e64
2 changed files with 1 additions and 7 deletions

View File

@ -634,10 +634,6 @@ def make_schema():
"type": "boolean",
"default": False,
},
"include_devel_modules": {
"type": "object",
"default": {},
},
"pkgset_source": {
"type": "string",

View File

@ -643,9 +643,7 @@ def populate_global_pkgset(compose, koji_wrapper, path_prefix, event):
event,
inherit=should_inherit,
logfile=logfile,
exclude_packages=module_tag_rpm_filter.get(compose_tag)
if not compose.conf["include_devel_modules"]
else None,
exclude_packages=module_tag_rpm_filter.get(compose_tag),
)
for variant in compose.all_variants.values():
if compose_tag in variant_tags[variant]: