provisioners/puppet: windows module sep [GH-3731]

This commit is contained in:
Mitchell Hashimoto 2014-05-09 09:22:36 -07:00
parent 745bdf6766
commit 39eaaf3664
2 changed files with 3 additions and 1 deletions

View File

@ -22,6 +22,7 @@ BUG FIXES:
- providers/docker: default proxy VM won't use HGFS [GH-3687]
- providers/docker: fix container linking [GH-3719]
- providers/docker: Port settings expose to host properly. [GH-3723]
- provisioners/puppet: Separate module paths with ';' on Windows. [GH-3731]
## 1.6.1 (May 7, 2014)

View File

@ -113,7 +113,8 @@ module VagrantPlugins
module_paths << default_module_path
# Add the command line switch to add the module path
options << "--modulepath '#{module_paths.join(':')}'"
module_path_sep = windows? ? ";" : ":"
options << "--modulepath '#{module_paths.join(module_path_sep)}'"
end
if @hiera_config_path