Puppet Class: shinken::packages
- Inherits:
- shinken
- Defined in:
- manifests/packages.pp
Overview
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
# File 'manifests/packages.pp', line 1
class shinken::packages (
$ensure = $shinken::ensure,
) inherits shinken {
$packages = ['python-pip',
'python-pycurl',
'python-cherrypy3',
'python-crypto',
'nagios-plugins-standard',
'mongodb',
'python-pymongo']
shinken::undef_package { $packages:
ensure => $ensure,
}
}
|