From e9477c1320809d9d00900a74a2c716bda0576dba Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Sun, 17 Nov 2013 07:59:50 -0800 Subject: [PATCH] need to load local modules as well. Does this mean no one has been testing stuff with Vagrant!? --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index 8aa9f0f..665f7ba 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -29,7 +29,7 @@ Vagrant::Config.run do |config| config.vm.provision :puppet do |puppet| puppet.manifests_path = "manifests" - puppet.module_path = "modules" + puppet.module_path = ["modules","local-modules"] puppet.manifest_file = ENV['MANIFEST'] || "vagrant.pp" end end