Puppet Class: shinken::modules
- Inherits:
- shinken
- Defined in:
- manifests/modules.pp
Overview
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
# File 'manifests/modules.pp', line 1
class shinken::modules (
$ensure = $shinken::ensure,
) inherits shinken {
$modules = ['mod-mongodb', 'snapshot-mongodb', 'retention-mongodb',
'ui-graphite2',
'webui2',
'auth-cfg-password',
'logstore-sqlite', 'livestatus',
'graphite2',
'ssh',
'http',
'linux-ssh',
'linux-snmp']
shinken::module {$modules:
ensure => $ensure,
}
}
|