我正在尝试设置 Vagrant。我正在关注网站上的指南,目前在指南的供应部分有问题 (http://vagrantup.com/docs/getting-started/provisioning.html) 我已经完全按照它的内容进行操作该网站,但我收到此错误,如果它有任何重要,我在 Mac OSX 上
evan@superduper ~/vagrant_guide $ vagrant up
There was a problem with the configuration of Vagrant. The error message(s)
are printed below:
chef:
* Run list must not be empty.
如果这也有帮助,这也是我的 Vagrant 文件的代码:
Vagrant::Config.run do |config|
config.vm.box = "lucid32"
# Enable the chef solo provisioner
config.vm.provisioner = :chef_solo
# Grab the cookbooks from the Vagrant files
config.chef.recipe_url = "http://files.vagrantup.com/getting_started/cookbooks.tar.gz"
end
有谁知道这是从哪里来的,我该如何解决?
谢谢
Ĵ