mirror of
https://src.koozali.org/infra/smeserver-koji.git
synced 2024-11-21 17:17:28 +01:00
remove compfile option
This commit is contained in:
parent
554d021527
commit
44279dac7d
@ -21,7 +21,6 @@ def tag2distrepo(cbtype, tag, build, user, force=False):
|
||||
raise ValueError("Tag %s has no arches configured but tag2distrepo_sme is enabled" % tag['name'])
|
||||
|
||||
keys = tag['extra'].get("tag2distrepo_sme.keys", '').split()
|
||||
compfile = tag['extra'].get("tag2distrepo_sme.comp", 'none')
|
||||
inherit = tag['extra'].get("tag2distrepo_sme.inherit", False)
|
||||
latest = tag['extra'].get("tag2distrepo_sme.latest", False)
|
||||
split_debuginfo = tag['extra'].get("tag2distrepo_sme.split_debuginfo", False)
|
||||
@ -38,7 +37,7 @@ def tag2distrepo(cbtype, tag, build, user, force=False):
|
||||
if tag['extra'].get("tag2distrepo_sme.allow_missing_signatures"):
|
||||
task_opts = {
|
||||
'arch': tag['arches'].split(),
|
||||
'comp': compfile,
|
||||
'comp': None,
|
||||
'delta': [],
|
||||
'event': None,
|
||||
'inherit': inherit,
|
||||
@ -51,7 +50,7 @@ def tag2distrepo(cbtype, tag, build, user, force=False):
|
||||
else:
|
||||
task_opts = {
|
||||
'arch': tag['arches'].split(),
|
||||
'comp': compfile,
|
||||
'comp': None,
|
||||
'delta': [],
|
||||
'event': None,
|
||||
'inherit': inherit,
|
||||
|
Loading…
Reference in New Issue
Block a user