From 4b15a2367b471a470b43eec951233a8773d79376 Mon Sep 17 00:00:00 2001 From: mprahl Date: Wed, 25 Oct 2017 15:21:59 +0000 Subject: [PATCH] Add https://src.fedoraproject.org/git/modules/ as a valid URL for MBS --- roles/mbs/common/templates/config.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/roles/mbs/common/templates/config.py b/roles/mbs/common/templates/config.py index dcd0c6bd5d..88d500b96f 100644 --- a/roles/mbs/common/templates/config.py +++ b/roles/mbs/common/templates/config.py @@ -136,7 +136,8 @@ class ProdConfiguration(BaseConfiguration): MESSAGING_TOPIC_PREFIX = ['org.fedoraproject.stg'] PDC_URL = 'https://pdc.stg.fedoraproject.org/rest_api/v1' SCMURLS = ['git://pkgs.stg.fedoraproject.org/modules/', - 'https://src.stg.fedoraproject.org/modules/'] + 'https://src.stg.fedoraproject.org/modules/', + 'https://src.stg.fedoraproject.org/git/modules/'] {% else %} KOJI_PROFILE = 'production' @@ -145,7 +146,8 @@ class ProdConfiguration(BaseConfiguration): MESSAGING_TOPIC_PREFIX = ['org.fedoraproject.prod'] PDC_URL = 'https://pdc.fedoraproject.org/rest_api/v1' SCMURLS = ['git://pkgs.fedoraproject.org/modules/', - 'https://src.fedoraproject.org/modules/'] + 'https://src.fedoraproject.org/modules/', + 'https://src.fedoraproject.org/git/modules/'] {% endif %} # Made possible by https://pagure.io/releng/issue/6799