Puppet Class: collectd::plugin::target_v5upgrade

Defined in:
manifests/plugin/target_v5upgrade.pp

Overview

Parameters:

  • ensure (Any) (defaults to: 'present')


2
3
4
5
6
7
8
9
10
11
12
# File 'manifests/plugin/target_v5upgrade.pp', line 2

class collectd::plugin::target_v5upgrade (
  $ensure = 'present',
) {
  include collectd

  collectd::plugin { 'target_v5upgrade':
    ensure  => $ensure,
    content => template('collectd/plugin/target_v5upgrade.conf.erb'),
    order   => '06',
  }
}