X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=dsa-nagios-checks%2Fchecks%2Fdsa-check-hpasm;h=8d3339efc774cb9fc59558063943064901f6dcb4;hb=a9a2e2fb94e486d35a951c85b144d6cdcc054e1c;hp=fc98866d3d2e3bd23b015a694cd3cee9e8914836;hpb=59807a3f3ff8398c5d6d0a35d7e7aeb4c5eeca18;p=mirror%2Fdsa-nagios.git diff --git a/dsa-nagios-checks/checks/dsa-check-hpasm b/dsa-nagios-checks/checks/dsa-check-hpasm index fc98866..8d3339e 100755 --- a/dsa-nagios-checks/checks/dsa-check-hpasm +++ b/dsa-nagios-checks/checks/dsa-check-hpasm @@ -47,14 +47,15 @@ my %callbacks = ( my $params = {}; -my $USAGE = "PROGRAM_NAME: Usage: $PROGRAM_NAME [--help] [--ps-no-redundant] [--fan-no-redundant] [--fan-high] [--dimm-na]\n"; +my $USAGE = "PROGRAM_NAME: Usage: $PROGRAM_NAME [--help] [--ps-no-redundant] [--fan-no-redundant] [--fan-high] [--dimm-na] [--fan-ignore-not-present]\n"; Getopt::Long::config('bundling'); if (!GetOptions ( - '--help' => \$params->{'help'}, - '--ps-no-redundant' => \$params->{'ps-no-redundant'}, - '--fan-no-redundant' => \$params->{'fan-no-redundant'}, - '--fan-high' => \$params->{'fan-high'}, - '--dimm-na' => \$params->{'dimm-na'}, + '--help' => \$params->{'help'}, + '--ps-no-redundant' => \$params->{'ps-no-redundant'}, + '--fan-no-redundant' => \$params->{'fan-no-redundant'}, + '--fan-high' => \$params->{'fan-high'}, + '--dimm-na' => \$params->{'dimm-na'}, + '--fan-ignore-not-present' => \$params->{'fan-ignore-not-present'}, )) { die ("$USAGE"); }; @@ -143,7 +144,7 @@ sub do_fans { if ($line[2] ne 'Yes') { $message = sprintf("FAN%d: status=%s ", $fan_num, $line[2]); - $exit_status |= 2; + $exit_status |= 2 unless ($params->{'fan-ignore-not-present'}); } elsif ($line[3] ne 'NORMAL') { $message = sprintf("FAN%d: speed=%s ", $fan_num, $line[3]); $exit_status |= 1 unless ($line[3] eq 'HIGH' && $params->{'fan-high'});