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:
Owen W. Taylor 2019-03-05 17:34:38 +00:00 committed by Kevin Fenzi
parent 1319bc99f5
commit 76197fc4d0
3 changed files with 13 additions and 1 deletions

View file

@ -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'],
}