mirror of
https://github.com/Icinga/icinga2.git
synced 2025-05-19 14:00:19 +02:00
10 lines
162 B
Puppet
10 lines
162 B
Puppet
class nagios-plugins {
|
|
include epel
|
|
|
|
# nagios plugins from epel
|
|
package { 'nagios-plugins-all':
|
|
ensure => installed,
|
|
require => Class['epel']
|
|
}
|
|
}
|