From 3f5610df5831c8c3fb93b9ac2c6a07c3a1b3df64 Mon Sep 17 00:00:00 2001 From: Ralph Bean Date: Thu, 2 Mar 2017 20:34:14 +0000 Subject: [PATCH] Whitelist the bootstrapped f26-modularity tag. --- roles/mbs/common/templates/config.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/roles/mbs/common/templates/config.py b/roles/mbs/common/templates/config.py index ba959c8fab..04cad06d4c 100644 --- a/roles/mbs/common/templates/config.py +++ b/roles/mbs/common/templates/config.py @@ -132,7 +132,12 @@ class ProdConfiguration(BaseConfiguration): {% endif %} # This is a whitelist of prefixes of koji tags we're allowed to manipulate - KOJI_TAG_PREFIXES = ['module'] + KOJI_TAG_PREFIXES = [ + # This is our standard prefix. All module tags should start with this. + 'module', + # Our very first manually bootstrapped tag has this name. + 'f26-modularity', + ] # These aren't really secret. OIDC_CLIENT_SECRETS = path.join(confdir, 'client_secrets.json')