1
0
mirror of https://github.com/krislamo/puppet-fluentd synced 2024-09-19 20:20:35 +00:00

fixed lint warnings

This commit is contained in:
Max Wilhelm 2017-07-11 10:53:03 +02:00
parent 2e789170a0
commit f4c24ee881
2 changed files with 6 additions and 6 deletions

View File

@ -5,5 +5,5 @@
# file installation
::fluentd::plugin { 'fluent-plugin-elasticsearch':
type => 'file',
source => 'puppet://path/to/plugin'
source => 'puppet:///modules/path/to/plugin'
}

View File

@ -91,9 +91,9 @@ class fluentd (
include '::fluentd::service'
# dependencies
Class['::Fluentd::Repo'] ->
Class['::Fluentd::Install'] ->
Class['::Fluentd::User'] ->
Class['::Fluentd::Config'] ->
Class['::Fluentd::Service']
Class['::Fluentd::Repo']
-> Class['::Fluentd::Install']
-> Class['::Fluentd::User']
-> Class['::Fluentd::Config']
-> Class['::Fluentd::Service']
}