Browse Source

Merge pull request #357 from piggyH/master

The puppet.manifests_path of Vagrantfile is wrong.
Rafał Pitoń 11 years ago
parent
commit
994b99dfe5
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