Add helper to install puppet/pe/puppet-agent
This commit is contained in:
parent
ee230d111b
commit
40c130c4cf
2 changed files with 3 additions and 15 deletions
1
Gemfile
1
Gemfile
|
@ -29,6 +29,7 @@ group :system_tests do
|
||||||
gem 'beaker-rspec', :require => false
|
gem 'beaker-rspec', :require => false
|
||||||
end
|
end
|
||||||
gem 'serverspec', :require => false
|
gem 'serverspec', :require => false
|
||||||
|
gem 'beaker-puppet_install_helper', :require => false
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,20 +1,7 @@
|
||||||
require 'beaker-rspec'
|
require 'beaker-rspec'
|
||||||
|
require 'beaker/puppet_install_helper'
|
||||||
|
|
||||||
# Install Puppet
|
run_puppet_install_helper
|
||||||
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
|
|
||||||
|
|
||||||
UNSUPPORTED_PLATFORMS = ['RedHat','Suse','windows','AIX','Solaris']
|
UNSUPPORTED_PLATFORMS = ['RedHat','Suse','windows','AIX','Solaris']
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue