cookbook-openstack-ops-data.../Berksfile
Lance Albertson ceccaadf8a Set Berksfile to use ruby solver
This provides much better debugging output.

Depends-On: https://review.opendev.org/702772
Change-Id: I1a738e6f951b12b54bbc2eaf61d5b01ab70a1203
2020-01-23 16:49:25 -08:00

14 lines
359 B
Ruby

source 'https://supermarket.chef.io'
solver :ruby, :required
%w(common).each do |cookbook|
if Dir.exist?("../cookbook-openstack-#{cookbook}")
cookbook "openstack-#{cookbook}", path: "../cookbook-openstack-#{cookbook}"
else
cookbook "openstack-#{cookbook}", git: "https://opendev.org/openstack/cookbook-openstack-#{cookbook}"
end
end
metadata