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沒有被遵守。我究竟做錯了什麼?
該死的......對不起這個愚蠢的錯誤。謝謝 –