Skip to content

Commit

Permalink
Add helper to install puppet/pe/puppet-agent
Browse files Browse the repository at this point in the history
  • Loading branch information
hunner committed Jun 11, 2015
1 parent 413a705 commit 5ac074e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 16 deletions.
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ group :system_tests do
gem 'beaker-rspec', :require => false
end
gem 'serverspec', :require => false
gem 'beaker-puppet_install_helper', :require => false
end


Expand Down
19 changes: 3 additions & 16 deletions spec/spec_helper_acceptance.rb
Original file line number Diff line number Diff line change
@@ -1,26 +1,13 @@
require 'beaker-rspec'
require 'beaker/puppet_install_helper'

UNSUPPORTED_PLATFORMS = ['windows', 'Darwin']

unless ENV['RS_PROVISION'] == 'no' or ENV['BEAKER_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

run_puppet_installer

hosts.each do |host|
unless host.is_pe?
on host, "/bin/echo '' > #{host['hieraconf']}"
end
on host, "mkdir -p #{host['distmoduledir']}"
if host['platform'] =~ /sles-12/i || host['platform'] =~ /solaris-11/i
apply_manifest_on(host, 'package{"git":}')
on host, 'git clone -b 4.6.x https://github.com/puppetlabs/puppetlabs-stdlib /etc/puppetlabs/puppet/modules/stdlib'
Expand Down

0 comments on commit 5ac074e

Please sign in to comment.