Browse Source

The puppet.manifests_path of Vagrantfile is wrong.

piggyH 11 years ago
parent
commit
7369eedd8b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Vagrantfile

+ 1 - 1
Vagrantfile

@@ -66,7 +66,7 @@ Vagrant.configure("2") do |config|
   # # }
   #
   config.vm.provision :puppet do |puppet|
-    puppet.manifests_path = "vagrant/puppet/manifests"
+    puppet.manifests_path = "vagrant/manifests"
     puppet.module_path    = "vagrant/puppet/modules"
     puppet.manifest_file  = "site.pp"
   end