mirror of
https://github.com/krislamo/puppet-fluentd
synced 2024-11-12 21:50:34 +00:00
if condition for manage_repo is now handled in fluentd::repo
This commit is contained in:
parent
600970d5df
commit
2e98aaa051
@ -67,10 +67,7 @@ class fluentd (
|
||||
fail('service_ensure parameter must be running or stopped')
|
||||
}
|
||||
|
||||
if $manage_repo {
|
||||
class { '::fluentd::repo': }
|
||||
}
|
||||
|
||||
class { '::fluentd::repo': } ->
|
||||
class { '::fluentd::install': } ->
|
||||
class { '::fluentd::config': } ->
|
||||
class { '::fluentd::service': }
|
||||
|
@ -1,6 +1,7 @@
|
||||
# Configure package repository
|
||||
#
|
||||
class fluentd::repo {
|
||||
class fluentd::repo inherits fluentd {
|
||||
if $manage_repo {
|
||||
case $::osfamily {
|
||||
'Debian': {
|
||||
include ::fluentd::repo::apt
|
||||
@ -9,4 +10,5 @@ class fluentd::repo {
|
||||
fail("No repo available for ${::osfamily}/${::operatingsystem}")
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user