1
0
mirror of https://github.com/krislamo/puppet-fluentd synced 2024-09-19 20:20:35 +00:00
puppet-fluentd/manifests/install.pp
2015-12-07 11:09:31 +01:00

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,
}
}