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