From: Hunter Haugen Date: Thu, 11 Jun 2015 22:26:17 +0000 (-0700) Subject: Add helper to install puppet/pe/puppet-agent X-Git-Tag: 2.2.0~19^2 X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=40c130c4cfda186f459b8407d5912f5368b91e47;p=puppet-modules%2Fpuppetlabs-apt.git Add helper to install puppet/pe/puppet-agent --- diff --git a/Gemfile b/Gemfile index b3facaa..643d3f5 100644 --- a/Gemfile +++ b/Gemfile @@ -29,6 +29,7 @@ group :system_tests do gem 'beaker-rspec', :require => false end gem 'serverspec', :require => false + gem 'beaker-puppet_install_helper', :require => false end diff --git a/spec/spec_helper_acceptance.rb b/spec/spec_helper_acceptance.rb index f1e1161..409ce68 100644 --- a/spec/spec_helper_acceptance.rb +++ b/spec/spec_helper_acceptance.rb @@ -1,20 +1,7 @@ require 'beaker-rspec' +require 'beaker/puppet_install_helper' -# Install Puppet -unless ENV['RS_PROVISION'] == 'no' - # This will install the latest available package on el and deb based - # systems fail on windows and osx, and install via gem on other *nixes - foss_opts = { - :default_action => 'gem_install', - :version => (ENV['PUPPET_VERSION'] || '3.8.1'), - } - - if default.is_pe?; then install_pe; else install_puppet( foss_opts ); end - - hosts.each do |host| - on host, "mkdir -p #{host['distmoduledir']}" - end -end +run_puppet_install_helper UNSUPPORTED_PLATFORMS = ['RedHat','Suse','windows','AIX','Solaris']