2013-04-17 36 views
0

我试图用木偶使用规定无业游民流浪不是在正确的地方寻找傀儡清单

我Vagrantfile是这样

Vagrant::Config.run do |config| 
    config.vm.box = "precise32" 
    config.vm.provision :puppet do |puppet| 
     puppet.modules_path = "/path/to/puppet/modules" 
     puppet.manifest_path = "/path/to/puppet/manifests" 
     puppet.manifest_file = "site.pp" 
     puppet.puppet_node = "lucy-dev-1" 
     ## custom facts provided to Puppet 
     puppet.facter = { 
      ## tells default.pp that we're running in Vagrant 
      "is_vagrant" => true, 
     } 
     puppet.options = "--verbose --debug" 
    end 
end 

当我运行vagrant up以下错误发生:

There are errors in the configuration of this machine. Please fix 
the following errors and try again: 

puppet provisioner: 
    * The manifests path specified for Puppet does not exist: /Users/fguimara/vagrant/manifests 

您可以注意到manifest_path没有被遵守。我究竟做错了什么?

回答