Vagrantをセットアップしようとしています。私はWebサイトのガイドに従っていますが、現在、ガイドのプロビジョニング部分(http://vagrantup.com/docs/getting-started/provisioning.html)で問題が発生しています。サイトですが、このエラーが発生します。重要な場合はMacOSXを使用しています
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
誰かこれが何から来たのか、どうすれば修正できますか?
ありがとう
J