Puppet Class: snmpd::load

Defined in:
manifests/load.pp

Overview

Class: snmpd::load

See snmpd.conf(5) ‘System Load Monitoring’ for additional information.

Parameters

max1
max5
max15

Authors

Parameters:

  • max1 (Any)
  • max5 (Any) (defaults to: '')
  • max15 (Any) (defaults to: '')


15
16
17
18
19
20
21
22
23
# File 'manifests/load.pp', line 15

class snmpd::load (
  $max1,
  $max5 = '',
  $max15 = ''
) {
  concat_fragment { 'snmpd+mon.load':
    content => "load ${max1} ${max5} ${max15}\n"
  }
}