mirror of
https://github.com/krislamo/puppet-fluentd
synced 2024-11-09 20:50:34 +00:00
526fd7a84e
Puppet tried to install the package without apt source.
18 lines
362 B
Puppet
18 lines
362 B
Puppet
# Configure package repository
|
|
#
|
|
class fluentd::repo inherits fluentd {
|
|
if $::fluentd::repo_manage {
|
|
case $::osfamily {
|
|
'Debian': {
|
|
contain ::fluentd::repo::apt
|
|
}
|
|
'RedHat': {
|
|
include ::fluentd::repo::yum
|
|
}
|
|
default: {
|
|
fail("No repo available for ${::osfamily}/${::operatingsystem}")
|
|
}
|
|
}
|
|
}
|
|
}
|