mirror of
https://github.com/opinkerfi/nagios-plugins.git
synced 2024-11-24 11:23:47 +01:00
Adjust code to pattern
This commit is contained in:
parent
3528589b39
commit
bffc02c60f
@ -35,7 +35,7 @@ sub f2c ($);
|
|||||||
|
|
||||||
if ($ARGV[0] =~ /(--help|-h|help)/ || !defined$ARGV[0]) {
|
if ($ARGV[0] =~ /(--help|-h|help)/ || !defined$ARGV[0]) {
|
||||||
&usage;
|
&usage;
|
||||||
exit 0;
|
exit OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
my $opts = 's:lmC:H:p:w:c:';
|
my $opts = 's:lmC:H:p:w:c:';
|
||||||
@ -255,12 +255,12 @@ Detected sensors:
|
|||||||
foreach my $id (sort { $sensor{$a}->{"friendly_name"} cmp $sensor{$b}->{"friendly_name"} } keys %sensor) {
|
foreach my $id (sort { $sensor{$a}->{"friendly_name"} cmp $sensor{$b}->{"friendly_name"} } keys %sensor) {
|
||||||
printf ("\t%-32s %s\n", "\"$sensor{$id}->{friendly_name}\"", "\"$sensor{$id}->{int_name}\"");
|
printf ("\t%-32s %s\n", "\"$sensor{$id}->{friendly_name}\"", "\"$sensor{$id}->{int_name}\"");
|
||||||
}
|
}
|
||||||
exit 0;
|
exit OK;
|
||||||
|
|
||||||
|
|
||||||
} elsif (!$oids{$param}) {
|
} elsif (!$oids{$param}) {
|
||||||
print "No test parameter specified";
|
print "No test parameter specified";
|
||||||
exit 3;
|
exit UNKNOWN;
|
||||||
} else {
|
} else {
|
||||||
$oid = $oids{$param}->{oid};
|
$oid = $oids{$param}->{oid};
|
||||||
$oidbase = $oids{$param}->{oidbase};
|
$oidbase = $oids{$param}->{oidbase};
|
||||||
@ -433,7 +433,7 @@ APC ACRC In-Row
|
|||||||
acrcflrettemp Fluid return temp
|
acrcflrettemp Fluid return temp
|
||||||
EO
|
EO
|
||||||
|
|
||||||
exit 3;
|
exit UNKNOWN;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user