mirror of
https://github.com/krislamo/puppet-fluentd
synced 2024-11-12 21:50:34 +00:00
13 lines
298 B
Puppet
13 lines
298 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,
|
|
require => Exec['apt_update'],
|
|
}
|
|
|
|
}
|