mirror of
https://github.com/krislamo/puppet-fluentd
synced 2024-11-09 20: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,12 +1,14 @@
|
||||
# Configure package repository
|
||||
#
|
||||
class fluentd::repo {
|
||||
case $::osfamily {
|
||||
'Debian': {
|
||||
include ::fluentd::repo::apt
|
||||
}
|
||||
default: {
|
||||
fail("No repo available for ${::osfamily}/${::operatingsystem}")
|
||||
class fluentd::repo inherits fluentd {
|
||||
if $manage_repo {
|
||||
case $::osfamily {
|
||||
'Debian': {
|
||||
include ::fluentd::repo::apt
|
||||
}
|
||||
default: {
|
||||
fail("No repo available for ${::osfamily}/${::operatingsystem}")
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user