From b3d0c083112112dae521527b2b77e1e76bfc9961 Mon Sep 17 00:00:00 2001 From: Luke Macken Date: Thu, 29 Oct 2015 16:01:18 +0000 Subject: [PATCH] bodhi: Fix the f23 repo path for the atomic composes --- roles/bodhi2/backend/templates/atomic-config.py.j2 | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/roles/bodhi2/backend/templates/atomic-config.py.j2 b/roles/bodhi2/backend/templates/atomic-config.py.j2 index 4420ac68e9..841e255f7b 100644 --- a/roles/bodhi2/backend/templates/atomic-config.py.j2 +++ b/roles/bodhi2/backend/templates/atomic-config.py.j2 @@ -18,7 +18,7 @@ config = dict( 'treefile': { 'include': 'fedora-atomic-docker-host.json', 'ref': 'fedora-atomic/f23/x86_64/docker-host', - 'repos': ['fedora-23', 'updates'], + 'repos': ['fedora-23-dev', 'updates'], 'packages': [], }, @@ -45,7 +45,7 @@ config = dict( 'treefile': { 'include': 'fedora-atomic-docker-host.json', 'ref': 'fedora-atomic/f23/x86_64/testing/docker-host', - 'repos': ['fedora-23', 'updates', 'updates-testing'], + 'repos': ['fedora-23-dev', 'updates', 'updates-testing'], 'packages': [], }, @@ -163,6 +163,7 @@ config = dict( # Package repositories to use in the mock container and ostree compose repos={ {% if env == 'production' %} + 'fedora-23-dev': 'file:///pub/fedora/linux/development/23/{arch}/os', 'fedora-{version}': 'file:///pub/fedora/linux/releases/{version}/Everything/{arch}/os', 'updates': 'file:///pub/fedora/linux/updates/{version}/{arch}/', 'updates-testing': 'file:///pub/fedora/linux/updates/testing/{version}/{arch}/',