Change the config base_module_names to be a list instead of a set to allow ordering by the admin

This commit is contained in:
mprahl
2018-10-04 07:15:20 -04:00
parent ac400fafcf
commit 54c1ed7166

View File

@@ -411,9 +411,9 @@ class Config(object):
'desc': ('The distinguished name of the container or organizational unit containing '
'the groups in LDAP')},
'base_module_names': {
'type': set,
'default': set(['platform']),
'desc': ("Set of module names which defines the product version "
'type': list,
'default': ['platform'],
'desc': ("List of base module names which define the product version "
"(by their stream) of modules depending on them.")},
'base_module_koji_arches': {
'type': dict,