Skip to content

Commit

Permalink
Merge pull request redhat-openstack#283 from cyberious/4.3.x
Browse files Browse the repository at this point in the history
Add windows support and work around issue with SCP_TO on windows systems
  • Loading branch information
hunner committed Jun 24, 2014
2 parents 191f180 + 78f5141 commit 0427248
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion spec/spec_helper_acceptance.rb
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,15 @@

# 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

0 comments on commit 0427248

Please sign in to comment.