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