0
我有一個樣品VagrantFile看起來像以下:流浪廚師提供特定的配方,而不是默認
Vagrant.configure("2") do |config|
config.vm.box = "bento/centos-6.7"
config.vm.provision :chef_solo do |chef|
chef.add_recipe "build-essential"
end
end
這成功地規定了盒子「建立必要的」使用默認的配方在build-essential\recipes\default.rb
。
我該如何在vagrant文件中指定它應該在該食譜中使用非默認配方,例如build-essential\recipes\customised_default.rb
?