From 3d4b3ffd56e99fdf6d3ea60ea431ff3449a48a2c Mon Sep 17 00:00:00 2001 From: Dusty Mabe Date: Thu, 24 Oct 2019 15:47:09 -0400 Subject: [PATCH] new-updates-sync: sync multiarch silverblue ostree content --- roles/bodhi2/backend/files/new-updates-sync | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/roles/bodhi2/backend/files/new-updates-sync b/roles/bodhi2/backend/files/new-updates-sync index d08c893017..2d0fb4dd5c 100755 --- a/roles/bodhi2/backend/files/new-updates-sync +++ b/roles/bodhi2/backend/files/new-updates-sync @@ -25,8 +25,9 @@ RELEASES = {'f31': {'topic': 'fedora', 'modules': ['fedora', 'fedora-secondary'], 'repos': {'updates': { 'from': 'f31-updates', - 'ostrees': [{'ref': 'fedora/31/x86_64/updates/silverblue', - 'dest': OSTREEDEST}], + 'ostrees': [{'ref': 'fedora/31/%(arch)s/updates/silverblue', + 'dest': OSTREEDEST, + 'arches': ['x86_64', 'ppc64le', 'aarch64']}], 'to': [{'arches': ['x86_64', 'armhfp', 'aarch64', 'source'], 'dest': os.path.join(FEDORADEST, '31', 'Everything')}, {'arches': ['ppc64le', 's390x'], @@ -34,8 +35,9 @@ RELEASES = {'f31': {'topic': 'fedora', ]}, 'updates-testing': { 'from': 'f31-updates-testing', - 'ostrees': [{'ref': 'fedora/31/x86_64/testing/silverblue', - 'dest': OSTREEDEST}], + 'ostrees': [{'ref': 'fedora/31/%(arch)s/testing/silverblue', + 'dest': OSTREEDEST, + 'arches': ['x86_64', 'ppc64le', 'aarch64']}], 'to': [{'arches': ['x86_64', 'aarch64', 'armhfp', 'source'], 'dest': os.path.join(FEDORADEST, 'testing', '31', 'Everything')}, {'arches': ['ppc64le', 's390x'],