Skip to content

Commit

Permalink
Update ntp to e02640f
Browse files Browse the repository at this point in the history
e02640f Merge pull request redhat-openstack#273 from hunner/typo
ad190a9 Typo of install method
2bdd22a Merge pull request redhat-openstack#271 from hunner/add_helper
5ac074e Add helper to install puppet/pe/puppet-agent

Change-Id: I250467fcc30e067d6d79a0f3508013cc936bbf86
  • Loading branch information
xbezdick committed Jun 23, 2015
1 parent 0a1dcb4 commit ca5fcae
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 17 deletions.
2 changes: 1 addition & 1 deletion Puppetfile
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ mod 'nssdb',
:git => 'https://github.com/rcritten/puppet-nssdb.git'

mod 'ntp',
:commit => '413a705d3b61eda9fb3651affb8cf79251c11d98',
:commit => 'e02640f066279808e9bd6cfa49b90e7792c0fa00',
:git => 'https://github.com/puppetlabs/puppetlabs-ntp'

mod 'openstack_extras',
Expand Down
1 change: 1 addition & 0 deletions ntp/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 ntp/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_install_helper

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 ca5fcae

Please sign in to comment.