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