mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-04-08 17:15:08 +02:00
10 lines
164 B
Puppet
10 lines
164 B
Puppet
class monitoring_plugins {
|
|
include epel
|
|
|
|
# nagios plugins from epel
|
|
package { 'nagios-plugins-all':
|
|
ensure => latest,
|
|
require => Class['epel']
|
|
}
|
|
}
|