mirror of
https://github.com/krislamo/puppet-fluentd
synced 2024-11-10 04:50:34 +00:00
12 lines
222 B
ObjectPascal
12 lines
222 B
ObjectPascal
|
# Configure package
|
||
|
#
|
||
|
class fluentd::install inherits fluentd {
|
||
|
|
||
|
package { 'fluentd':
|
||
|
ensure => $package_ensure,
|
||
|
name => $package_name,
|
||
|
install_options => $package_install_options,
|
||
|
}
|
||
|
|
||
|
}
|