![Samuel Cassiba](/assets/img/avatar_default.png)
In the effort to import the dns and client cookbooks, the dns cookbook reference was inadvertently left out. Change-Id: Ibea92346c1d355db0bb71e1533e68168218a7af2
27 lines
635 B
Ruby
27 lines
635 B
Ruby
source 'https://supermarket.chef.io'
|
|
|
|
%w(
|
|
integration-test
|
|
orchestration
|
|
telemetry
|
|
block-storage
|
|
common
|
|
compute
|
|
dashboard
|
|
dns
|
|
identity
|
|
image
|
|
network
|
|
ops-database
|
|
ops-messaging
|
|
).each do |cookbook|
|
|
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}"
|
|
end
|
|
end
|
|
|
|
cookbook 'openstackclient', git: 'https://git.openstack.org/openstack/cookbook-openstackclient'
|
|
cookbook 'statsd', github: 'librato/statsd-cookbook'
|