starting queens development patch and use git.openstack.org

* use git.openstack.org instead of github for berks dependency
resolution

Depends-On: https://review.openstack.org/549345
Change-Id: Ib864e84dddfc59b5876932b4c2d809406e2d5007
This commit is contained in:
Samuel Cassiba 2018-03-02 18:15:09 -08:00
parent c6f038443c
commit 526ea82f5e
2 changed files with 4 additions and 4 deletions

View File

@ -4,7 +4,7 @@ source 'https://supermarket.chef.io'
if Dir.exist?("../cookbook-openstack-#{cookbook}") if Dir.exist?("../cookbook-openstack-#{cookbook}")
cookbook "openstack-#{cookbook}", path: "../cookbook-openstack-#{cookbook}" cookbook "openstack-#{cookbook}", path: "../cookbook-openstack-#{cookbook}"
else else
cookbook "openstack-#{cookbook}", github: "openstack/cookbook-openstack-#{cookbook}" cookbook "openstack-#{cookbook}", git: "https://git.openstack.org/openstack/cookbook-openstack-#{cookbook}"
end end
end end

View File

@ -4,14 +4,14 @@ maintainer_email 'openstack-dev@lists.openstack.org'
license 'Apache-2.0' license 'Apache-2.0'
description 'Installs and configures the OpenStack Network API Service and various agents and plugins' description 'Installs and configures the OpenStack Network API Service and various agents and plugins'
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md')) long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version '16.0.0' version '17.0.0'
%w(ubuntu redhat centos).each do |os| %w(ubuntu redhat centos).each do |os|
supports os supports os
end end
depends 'openstack-common', '>= 16.0.0' depends 'openstack-common', '>= 17.0.0'
depends 'openstack-identity', '>= 16.0.0' depends 'openstack-identity', '>= 17.0.0'
depends 'openstackclient' depends 'openstackclient'
issues_url 'https://launchpad.net/openstack-chef' if respond_to?(:issues_url) issues_url 'https://launchpad.net/openstack-chef' if respond_to?(:issues_url)