mirror of
https://github.com/krislamo/puppet-fluentd
synced 2024-11-10 04:50:34 +00:00
afc59cb27e
consistency
15 lines
299 B
Puppet
15 lines
299 B
Puppet
# Configure package repository
|
|
#
|
|
class fluentd::repo inherits fluentd {
|
|
if $::fluentd::repo_manage {
|
|
case $::osfamily {
|
|
'Debian': {
|
|
include ::fluentd::repo::apt
|
|
}
|
|
default: {
|
|
fail("No repo available for ${::osfamily}/${::operatingsystem}")
|
|
}
|
|
}
|
|
}
|
|
}
|