diff options
| author | Ralph Bean <rbean@redhat.com> | 2017-03-13 18:17:44 +0000 |
|---|---|---|
| committer | Ralph Bean <rbean@redhat.com> | 2017-03-13 18:17:44 +0000 |
| commit | d3d8c9ec3bb8d52b32aea6455b6ed2362ad66d7f (patch) | |
| tree | b6a7b190520b2110245e22f8339a5e4b15fb2b7a /roles/mbs | |
| parent | 2d087767089685b5740fdecde462121bfad69d3a (diff) | |
| download | ansible-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.py | 7 |
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. |
