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