diff --git a/.gitreview b/.gitreview index 1fa221f..2c9cf23 100644 --- a/.gitreview +++ b/.gitreview @@ -2,3 +2,4 @@ host=review.openstack.org port=29418 project=openstack/cookbook-openstack-integration-test.git +defaultbranch=stable/queens diff --git a/Berksfile b/Berksfile index ee8b617..e7392f2 100644 --- a/Berksfile +++ b/Berksfile @@ -4,11 +4,14 @@ 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://git.openstack.org/openstack/cookbook-openstack-#{cookbook}", branch: 'stable/queens' end end -cookbook 'openstackclient', - github: 'cloudbau/cookbook-openstackclient' +if Dir.exist?('../cookbook-openstackclient') + cookbook 'openstackclient', path: '../cookbook-openstackclient' +else + cookbook 'openstackclient', git: 'https://git.openstack.org/openstack/cookbook-openstackclient', branch: 'stable/queens' +end metadata diff --git a/bootstrap.sh b/bootstrap.sh index fe49ef2..676f697 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -2,7 +2,7 @@ ## This script is for installing all the needed packages on trusty to run the chef tests with 'chef exec rake'. ## It relies on the common bootstrap.sh from openstack/cookbook-openstack-common for installing common dependencies. -curl https://raw.githubusercontent.com/openstack/cookbook-openstack-common/master/bootstrap.sh \ +curl https://raw.githubusercontent.com/openstack/cookbook-openstack-common/stable/queens/bootstrap.sh \ --retry 3 \ --silent \ --show-error \