summaryrefslogtreecommitdiffstats
path: root/roles/mbs
diff options
context:
space:
mode:
authorRalph Bean <rbean@redhat.com>2017-03-13 18:17:44 +0000
committerRalph Bean <rbean@redhat.com>2017-03-13 18:17:44 +0000
commitd3d8c9ec3bb8d52b32aea6455b6ed2362ad66d7f (patch)
treeb6a7b190520b2110245e22f8339a5e4b15fb2b7a /roles/mbs
parent2d087767089685b5740fdecde462121bfad69d3a (diff)
downloadansible-d3d8c9ec3bb8d52b32aea6455b6ed2362ad66d7f.tar.gz
ansible-d3d8c9ec3bb8d52b32aea6455b6ed2362ad66d7f.tar.xz
ansible-d3d8c9ec3bb8d52b32aea6455b6ed2362ad66d7f.zip
New config values for the new release.
Diffstat (limited to 'roles/mbs')
-rw-r--r--roles/mbs/common/templates/config.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/roles/mbs/common/templates/config.py b/roles/mbs/common/templates/config.py
index 04cad06d4..4de31cbcd 100644
--- a/roles/mbs/common/templates/config.py
+++ b/roles/mbs/common/templates/config.py
@@ -50,6 +50,9 @@ class BaseConfiguration(object):
RPMS_DEFAULT_CACHE = 'http://pkgs.fedoraproject.org/repo/pkgs/'
RPMS_ALLOW_CACHE = False
+ MODULES_DEFAULT_REPOSITORY = 'git://pkgs.fedoraproject.org/modules/'
+ MODULES_ALLOW_REPOSITORY = False
+
# Available backends are: console, file, journal.
LOG_BACKEND = 'journal'
@@ -139,8 +142,12 @@ class ProdConfiguration(BaseConfiguration):
'f26-modularity',
]
+ # If this is too long, we could change it to 'fm_' some day.
+ DEFAULT_DIST_TAG_PREFIX = 'module_'
+
# These aren't really secret.
OIDC_CLIENT_SECRETS = path.join(confdir, 'client_secrets.json')
+ OIDC_REQUIRED_SCOPE = 'https://mbs.fedoraproject.org/oidc/submit-build'
# yes, we want everyone to authenticate
NO_AUTH = False # Obviously.