Puppet Class: collectd::plugin::uuid

Defined in:
manifests/plugin/uuid.pp

Overview

Parameters:

  • uuid_file (Any) (defaults to: '/etc/uuid')
  • ensure (Any) (defaults to: 'present')
  • interval (Any) (defaults to: undef)


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

class collectd::plugin::uuid (
  $uuid_file = '/etc/uuid',
  $ensure    = 'present',
  $interval  = undef,
) {
  include collectd

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