From: Travis Fields Date: Tue, 24 Jun 2014 00:24:08 +0000 (-0700) Subject: Removed platform check for facts.d mkdir X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=78f5141290926aaabec3980aae9d923c7bf1d359;p=puppet-stdlib.git Removed platform check for facts.d mkdir --- diff --git a/spec/spec_helper_acceptance.rb b/spec/spec_helper_acceptance.rb index dc2cfdc..e9ccc68 100755 --- a/spec/spec_helper_acceptance.rb +++ b/spec/spec_helper_acceptance.rb @@ -6,12 +6,7 @@ UNSUPPORTED_PLATFORMS = [] unless ENV['RS_PROVISION'] == 'no' or ENV['BEAKER_provision'] == 'no' if hosts.first.is_pe? install_pe - hosts.each do |host| - if !(host['platform'] =~ /windows/) - on host, 'mkdir -p /etc/puppetlabs/facter/facts.d' - end - end - + on hosts, 'mkdir -p /etc/puppetlabs/facter/facts.d' else install_puppet on hosts, 'mkdir -p /etc/facter/facts.d'