Prepare staging for a separate flatpaks/ namespace
Change the distgit staging configuration to allow a flatpaks/ namespace, and configure Koji and MBS to allow building from there. Signed-off-by: Owen W. Taylor <otaylor@fishsoup.net>
This commit is contained in:
parent
1319bc99f5
commit
76197fc4d0
3 changed files with 13 additions and 1 deletions
|
@ -214,7 +214,11 @@ LOGGING = {
|
|||
# Configuration item that are specific for this odd pagure instance
|
||||
|
||||
ENABLE_UI_NEW_PROJECTS = False
|
||||
{% if env == 'staging' %}
|
||||
ALLOWED_PREFIX = ['rpms', 'modules', 'flatpaks', 'container', 'tests']
|
||||
{% else %}
|
||||
ALLOWED_PREFIX = ['rpms', 'modules', 'container', 'tests']
|
||||
{% endif %}
|
||||
EXCLUDE_GROUP_INDEX = ['packager']
|
||||
PRIVATE_PROJECTS = False
|
||||
{% if env == 'staging' %}
|
||||
|
@ -244,6 +248,9 @@ ACLS = {
|
|||
|
||||
REQUIRED_GROUPS = {
|
||||
'container/*': ['packager'],
|
||||
{% if env == 'staging' %}
|
||||
'flatpaks/*': ['packager'],
|
||||
{% endif %}
|
||||
'modules/*': ['packager'],
|
||||
'rpms/*': ['packager'],
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue