mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-08-21 01:38:09 +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']
|
|
}
|
|
}
|