Handle 22.04 new syntax

This commit is contained in:
Johan Wassberg 2024-01-15 14:30:20 +01:00
parent 2561b4d0ed
commit 02051a2923
Signed by: jocar
GPG key ID: BE4EC2EEADF2C31B

View file

@ -816,8 +816,16 @@ class nrpe {
if ($::operatingsystem == 'Ubuntu' and $::operatingsystemrelease < '18.04') {
package {'nagios-plugins-extra': ensure => latest}
}
sunet::nagios::nrpe_command {'check_memory':
command_line => '/usr/lib/nagios/plugins/check_memory -w 10% -c 5%'
if ($::operatingsystem == 'Ubuntu' and versioncmp($::operatingsystemrelease, '22.04') >= 0 ){
$mem_w = '90'
$mem_c = '95'
} else {
$mem_w = '10'
$mem_c = '5'
}
sunet::nagios::nrpe_command { 'check_memory':
command_line => "/usr/lib/nagios/plugins/check_memory -w ${mem_w}% -c ${mem_c}%"
}
sunet::nagios::nrpe_command {'check_mem':
command_line => '/usr/lib/nagios/plugins/check_memory -w 10% -c 5%'