Showing with 20 additions and 14 deletions.
  1. +3 −1 .fixtures.yml
  2. +3 −0 .travis.yml
  3. +3 −1 CHANGELOG
  4. +6 −9 Gemfile
  5. +1 −1 Modulefile
  6. +1 −0 Rakefile
  7. +1 −0 manifests/webhook.pp
  8. +1 −1 metadata.json
  9. +1 −1 spec/classes/params_spec.rb
4 changes: 3 additions & 1 deletion .fixtures.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
fixtures:
repositories:
stdlib: "git://github.com/puppetlabs/puppetlabs-stdlib.git"
stdlib:
repo: "git://github.com/puppetlabs/puppetlabs-stdlib.git"
ref: "3.2.1"
ruby: "git://github.com/puppetlabs/puppetlabs-ruby.git"
gcc: "git://github.com/puppetlabs/puppetlabs-gcc.git"
pe_gem: "git://github.com/puppetlabs/puppetlabs-pe_gem.git"
Expand Down
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
---
sudo: false
branches:
only:
- master
Expand All @@ -23,6 +24,8 @@ env:
- PUPPET_VERSION="~> 3.4.0"
- PUPPET_VERSION="~> 3.5.1"
- PUPPET_VERSION="~> 3.6.0"
- PUPPET_VERSION="~> 3.7.0"

global:
- PUBLISHER_LOGIN=acidprime
matrix:
Expand Down
4 changes: 3 additions & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
2.6.0 - Gary Larizza
2.6.2 - harrytford
* Webhook new installs fix #132
2.6.1 - Gary Larizza
* Fix "local" non mcollective hook tiggers to add '-p'
* See #125 , this will cause any current users to default to turning this on
2.6.0 - Eli Young & Ranjit Viswakumar
Expand Down
15 changes: 6 additions & 9 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,17 @@ source ENV['GEM_SOURCE'] || "https://rubygems.org"

group :development, :test do
gem 'rake', :require => false
gem 'rspec-puppet', '~> 1.0', :require => false
gem 'puppetlabs_spec_helper', :require => false
gem 'serverspec', :require => false
gem 'rspec-system', :require => false
gem 'rspec-system-puppet', :require => false
gem 'rspec-system-serverspec', :require => false
gem 'rspec-core', '2.99.2', :require => false
gem 'rspec-puppet', '~> 1.0', :require => false
gem 'puppet-lint', :require => false
gem 'puppet-syntax', :require => false
end

group :system_tests do
gem 'beaker-rspec', :require => false
gem 'serverspec', :require => false
end
#group :system_tests do
# gem 'beaker-rspec', :require => false
# gem 'serverspec', :require => false
#end

if facterversion = ENV['FACTER_GEM_VERSION']
gem 'facter', facterversion, :require => false
Expand Down
2 changes: 1 addition & 1 deletion Modulefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name 'zack-r10k'
version '2.6.1'
version '2.6.2'
source 'https://github.com/acidprime/r10k'
author 'zack'
license 'Apache License, Version 2.0'
Expand Down
1 change: 1 addition & 0 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ PuppetLint.configuration.send("disable_80chars")
PuppetLint.configuration.send('disable_class_parameter_defaults')
PuppetLint.configuration.send('disable_class_inherits_from_params_class')
PuppetLint.configuration.ignore_paths = exclude_paths
PuppetLint.configuration.relative = true
PuppetSyntax.exclude_paths = exclude_paths

#task :default => [:test]
Expand Down
1 change: 1 addition & 0 deletions manifests/webhook.pp
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@
group => 'peadmin',
mode => '0644',
content => file('/etc/puppetlabs/puppet/ssl/certs/pe-internal-peadmin-mcollective-client.pem'),
before => File['webhook_init_script'],
}
}
}
2 changes: 1 addition & 1 deletion metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"source": "https://github.com/acidprime/r10k",
"summary": "Module for setting up dynamic environments using r10k",
"tags": ["git", "pe", "environment", "mcollective"],
"version": "2.6.1",
"version": "2.6.2",
"dependencies": [
{
"name": "puppetlabs/stdlib",
Expand Down
2 changes: 1 addition & 1 deletion spec/classes/params_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
it { should contain_r10k__params }

it "Should not contain any resources" do
expect(subject.resources.size).to eq(5)
expect(subject.resources.size).to eq(4)
end
end
end