cookbook-openstack-block-st.../Berksfile

14 lines
390 B
Ruby

source 'https://supermarket.chef.io'
%w(client -image -identity -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}",
branch: 'stable/rocky'
end
end
metadata