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