From 552614f37c8eecd2ef77b7e52c7f3a5eacc2b0a8 Mon Sep 17 00:00:00 2001 From: Ralph Bean Date: Mon, 30 Jan 2017 17:06:41 +0000 Subject: [PATCH] More than just x86_64. Thanks dgilmore! --- roles/mbs/common/templates/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/mbs/common/templates/config.py b/roles/mbs/common/templates/config.py index 0837a8bbcd..9f652a0cea 100644 --- a/roles/mbs/common/templates/config.py +++ b/roles/mbs/common/templates/config.py @@ -111,7 +111,7 @@ class ProdConfiguration(BaseConfiguration): SCMURLS = ["git://pkgs.stg.fedoraproject.org/modules/"] {% else %} KOJI_PROFILE = 'production' - KOJI_ARCHES = ['x86_64'] + KOJI_ARCHES = ['aarch64', 'armv7hl', 'i686', 'ppc64', 'ppc64le', 'x86_64'] KOJI_REPOSITORY_URL = 'http://kojipkgs.fedoraproject.org/repos' MESSAGING_TOPIC_PREFIX = ['org.fedoraproject.prod'] PDC_URL = 'https://pdc.fedoraproject.org/rest_api/v1'