Puppet Class: collectd::plugin::protocols

Defined in:
manifests/plugin/protocols.pp

Overview

Parameters:

  • ensure (Any) (defaults to: 'present')
  • ignoreselected (Optional[Boolean]) (defaults to: undef)
  • values (Array) (defaults to: [])


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

class collectd::plugin::protocols (
  $ensure = 'present',
  Optional[Boolean] $ignoreselected = undef,
  Array $values = []
) {
  include collectd

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