From 2ec7b15d57706dcfcadab5dd3adf79c1e88d1013 Mon Sep 17 00:00:00 2001 From: Corey Bryant Date: Sun, 12 Jul 2015 21:03:27 +0000 Subject: [PATCH] Fixup amulet git repos --- tests/basic_deployment.py | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/tests/basic_deployment.py b/tests/basic_deployment.py index 8956cda4..d1bceb72 100644 --- a/tests/basic_deployment.py +++ b/tests/basic_deployment.py @@ -76,16 +76,16 @@ class NeutronOVSBasicDeployment(OpenStackAmuletDeployment): 'repository': 'git://github.com/openstack/requirements', 'branch': branch}, {'name': 'neutron-fwaas', - 'repository': 'git://github.com/coreycb/neutron-fwaas', + 'repository': 'git://github.com/openstack/neutron-fwaas', 'branch': branch}, {'name': 'neutron-lbaas', - 'repository': 'git://github.com/coreycb/neutron-lbaas', + 'repository': 'git://github.com/openstack/neutron-lbaas', 'branch': branch}, {'name': 'neutron-vpnaas', - 'repository': 'git://github.com/coreycb/neutron-vpnaas', + 'repository': 'git://github.com/openstack/neutron-vpnaas', 'branch': branch}, {'name': 'neutron', - 'repository': 'git://github.com/coreycb/neutron', + 'repository': 'git://github.com/openstack/neutron', 'branch': branch}, ], 'directory': '/mnt/openstack-git', @@ -93,13 +93,19 @@ class NeutronOVSBasicDeployment(OpenStackAmuletDeployment): 'https_proxy': amulet_http_proxy, } else: + if self._get_openstack_release() == self.trusty_icehouse: + reqs_repo = 'git://github.com/coreycb/requirements' + neutron_repo = 'git://github.com/coreycb/neutron' + else: + reqs_repo = 'git://github.com/openstack/requirements' + neutron_repo = 'git://github.com/openstack/neutron' openstack_origin_git = { 'repositories': [ {'name': 'requirements', - 'repository': 'git://github.com/openstack/requirements', + 'repository': reqs_repo, 'branch': branch}, {'name': 'neutron', - 'repository': 'git://github.com/coreycb/neutron', + 'repository': neutron_repo, 'branch': branch}, ], 'directory': '/mnt/openstack-git',