From 617bf08f9e1be92a695f6d8f273e7f3d3c316936 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Tue, 30 Apr 2013 18:31:06 -0700 Subject: [PATCH] Use the proper path on Puppet apply to the manifest --- plugins/provisioners/puppet/provisioner/puppet.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/provisioners/puppet/provisioner/puppet.rb b/plugins/provisioners/puppet/provisioner/puppet.rb index 57ea75d88..4fc9d1eb4 100644 --- a/plugins/provisioners/puppet/provisioner/puppet.rb +++ b/plugins/provisioners/puppet/provisioner/puppet.rb @@ -19,7 +19,7 @@ module VagrantPlugins root_path = @machine.env.root_path @expanded_manifests_path = @config.expanded_manifests_path(root_path) @expanded_module_paths = @config.expanded_module_paths(root_path) - @manifest_file = File.join(@expanded_manifests_path, @config.manifest_file) + @manifest_file = File.join(manifests_guest_path, @config.manifest_file) # Setup the module paths @module_paths = []