mirror of
https://github.com/krislamo/puppet-fluentd
synced 2025-09-13 08:59:29 +00:00
Compare commits
5 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
9eb19b3d1b | ||
|
6a05cae33e | ||
|
2183f670f2 | ||
|
bcad5ca42c | ||
|
26694848cb |
@@ -1,5 +1,8 @@
|
||||
# Changelog
|
||||
|
||||
## 0.5.3
|
||||
* update treasure data repo gpg key
|
||||
|
||||
## 0.5.2
|
||||
* Correct the docs related to the service_enable parameter
|
||||
|
||||
|
13
Gemfile
13
Gemfile
@@ -5,6 +5,17 @@ gem 'puppet', puppetversion
|
||||
gem 'puppetlabs_spec_helper', '>= 0.8.2'
|
||||
gem 'puppet-lint', '>= 1.0.0'
|
||||
gem 'facter', '>= 1.7.0'
|
||||
gem 'beaker-rspec'
|
||||
gem 'beaker-puppet_install_helper'
|
||||
gem 'metadata-json-lint'
|
||||
|
||||
beakerrspec = '> 0'
|
||||
platforms [:ruby_19, :ruby_21] do
|
||||
beakerrspec = '<= 5.6.0'
|
||||
end
|
||||
gem 'beaker-rspec', beakerrspec
|
||||
|
||||
platforms :ruby_19 do
|
||||
gem 'public_suffix', '< 1.5.0', :platforms => :ruby_19
|
||||
gem 'nokogiri', '< 1.7.0', :platforms => :ruby_19
|
||||
gem 'mime-types', '< 3.0', :platforms => :ruby_19
|
||||
end
|
@@ -7,7 +7,7 @@ class fluentd::repo::apt (
|
||||
$repos = 'contrib',
|
||||
$architecture = $::architecture,
|
||||
$key = {
|
||||
'id' => 'C901622B5EC4AF820C38AB861093DB45A12E206F',
|
||||
'id' => 'BEE682289B2217F45AF4CC3F901F9177AB97ACBE',
|
||||
'source' => 'http://packages.treasuredata.com/GPG-KEY-td-agent'
|
||||
},
|
||||
$include = {
|
||||
|
@@ -23,4 +23,11 @@ class fluentd::repo::yum (
|
||||
path => '/bin:/usr/bin/',
|
||||
refreshonly => true,
|
||||
}
|
||||
|
||||
exec { 'remove old GPG key':
|
||||
command => 'rpm -e --allmatches gpg-pubkey-a12e206f-*',
|
||||
onlyif => 'rpm -qi gpg-pubkey-a12e206f-*',
|
||||
notify => Exec['add GPG key'],
|
||||
}
|
||||
|
||||
}
|
||||
|
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "wywygmbh-fluentd",
|
||||
"version": "0.5.2",
|
||||
"version": "0.5.3",
|
||||
"author": "wywy GmbH",
|
||||
"summary": "Generic module for fluentd (td-agent).",
|
||||
"license": "Apache-2.0",
|
||||
|
@@ -21,7 +21,7 @@ describe 'fluentd::repo::apt', :type => :class do
|
||||
'repos' => 'contrib',
|
||||
'architecture' => 'amd64',
|
||||
'key' => {
|
||||
'id' => 'C901622B5EC4AF820C38AB861093DB45A12E206F',
|
||||
'id' => 'BEE682289B2217F45AF4CC3F901F9177AB97ACBE',
|
||||
'source' => 'http://packages.treasuredata.com/GPG-KEY-td-agent'
|
||||
},
|
||||
'include' => {
|
||||
|
Reference in New Issue
Block a user