Merge pull request #283 from cyberious/4.3.x

Add windows support and work around issue with SCP_TO on windows systems
This commit is contained in:
Hunter Haugen 2014-06-23 18:58:37 -07:00
commit 0427248cf0

View file

@ -26,6 +26,15 @@ RSpec.configure do |c|
# Configure all nodes in nodeset
c.before :suite do
puppet_module_install(:source => proj_root, :module_name => 'stdlib')
hosts.each do |host|
if host['platform'] !~ /windows/i
copy_root_module_to(host, :source => proj_root, :module_name => 'stdlib')
end
end
hosts.each do |host|
if host['platform'] =~ /windows/i
on host, puppet('plugin download')
end
end
end
end