Puppet Class: librenms::applications::chip
- Inherits:
- librenms::params
- Defined in:
- manifests/applications/chip.pp
Overview
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
# File 'manifests/applications/chip.pp', line 1
class librenms::applications::chip (
Boolean $enabled = true,
) inherits librenms::params {
create_resources(librenms::fetch, {
'chip.sh' => {
use => $enabled,
}})
librenms::snmpd{'power-stat':
use => $enabled,
script => 'chip.sh'
}
}
|