Skip to content

Commit

Permalink
Fix spec_helper_acceptance for pe
Browse files Browse the repository at this point in the history
You only want to start the puppetmaster on non-windows boxes running
FOSS tests.
  • Loading branch information
Morgan Haskel committed Dec 23, 2014
1 parent 2699b6c commit beba2c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec/spec_helper_acceptance.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
end

hosts.each do |host|
if host['platform'] !~ /windows/i
if not host.is_pe? and host['platform'] !~ /windows/i
on host, 'puppet master'
on host, "mkdir -p #{host['distmoduledir']}"
elsif host["platform"] =~ /solaris/
Expand Down

0 comments on commit beba2c3

Please sign in to comment.