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