Handle 22.04 new syntax
This commit is contained in:
parent
2561b4d0ed
commit
02051a2923
1 changed files with 10 additions and 2 deletions
|
@ -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%'
|
||||
|
|
Loading…
Add table
Reference in a new issue