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