summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Palfrader <peter@palfrader.org>2006-05-30 13:24:31 +0000
committerweasel <weasel@bc3d92e2-beff-0310-a7cd-cc87d7ac0ede>2006-05-30 13:24:31 +0000
commit95ea47291abb87cc6f515f3ee2198d5e195b2757 (patch)
treebaefde146cfb8b16d3691152b105369fac46face
parentea69ac0ee02585a7694e44f486614fbbda478da5 (diff)
speling fixes
git-svn-id: svn+ssh://asteria.noreply.org/svn/weaselutils/trunk@111 bc3d92e2-beff-0310-a7cd-cc87d7ac0ede
-rwxr-xr-xnagios-check-raid-3ware4
1 files changed, 2 insertions, 2 deletions
diff --git a/nagios-check-raid-3ware b/nagios-check-raid-3ware
index 9a4e60f..8f87e4e 100755
--- a/nagios-check-raid-3ware
+++ b/nagios-check-raid-3ware
@@ -93,14 +93,14 @@ for my $line (@tw) {
$msg .= ($msg eq '' ? '' : '; '). "$device: $status";
$exit = $exit > $CRITICAL ? $exit : $CRITICAL;
} else {
- $msg .= ($msg eq '' ? '' : '; '). "$device: UKNOWN STATUS '$status'";
+ $msg .= ($msg eq '' ? '' : '; '). "$device: UNKNOWN STATUS '$status'";
$exit = $exit > $UNKNOWN ? $exit : $UNKNOWN;
};
};
if ($msg eq '') {
$msg = "No devices found";
- die ("exit is not UKNOWN but $exit") if ($exit != $UNKNOWN);
+ die ("exit is not UNKNOWN but $exit") if ($exit != $UNKNOWN);
}
print $msg,"\n";