From 269bad2103cd53a517591c11c72dc3b9c26980a1 Mon Sep 17 00:00:00 2001 From: inspurericzhang Date: Tue, 19 Nov 2019 15:24:28 +0800 Subject: [PATCH] Replace git.openstack.org with opendev.org Also update the location of the openstackclient cookbook and make it possible to test patches there as dependencies, too. Change-Id: I19894b6f71d2a9aaf2ad0b7d93728fee862eb93c --- Berksfile | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/Berksfile b/Berksfile index ee8b617..9b4be28 100644 --- a/Berksfile +++ b/Berksfile @@ -4,11 +4,16 @@ source 'https://supermarket.chef.io' if Dir.exist?("../cookbook-openstack-#{cookbook}") cookbook "openstack-#{cookbook}", path: "../cookbook-openstack-#{cookbook}" else - cookbook "openstack-#{cookbook}", git: "https://git.openstack.org/openstack/cookbook-openstack-#{cookbook}" + cookbook "openstack-#{cookbook}", git: "https://opendev.org/openstack/cookbook-openstack-#{cookbook}" end end -cookbook 'openstackclient', - github: 'cloudbau/cookbook-openstackclient' +if Dir.exist?('../cookbook-openstackclient') + cookbook 'openstackclient', + path: '../cookbook-openstackclient' +else + cookbook 'openstackclient', + git: 'https://opendev.org/openstack/cookbook-openstackclient' +end metadata