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
This commit is contained in:
inspurericzhang 2019-11-19 15:24:28 +08:00 committed by Jens Harbott
parent 5fc3d0635b
commit 269bad2103
1 changed files with 8 additions and 3 deletions

View File

@ -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