icinga2/.vagrant-puppet/modules/nagios-plugins/manifests/init.pp

10 lines
162 B
Puppet

class nagios-plugins {
include epel
# nagios plugins from epel
package { 'nagios-plugins-all':
ensure => installed,
require => Class['epel']
}
}