diff options
author | Peter Palfrader <peter@palfrader.org> | 2006-05-30 13:24:31 +0000 |
---|---|---|
committer | weasel <weasel@bc3d92e2-beff-0310-a7cd-cc87d7ac0ede> | 2006-05-30 13:24:31 +0000 |
commit | 95ea47291abb87cc6f515f3ee2198d5e195b2757 (patch) | |
tree | baefde146cfb8b16d3691152b105369fac46face | |
parent | ea69ac0ee02585a7694e44f486614fbbda478da5 (diff) |
speling fixes
git-svn-id: svn+ssh://asteria.noreply.org/svn/weaselutils/trunk@111 bc3d92e2-beff-0310-a7cd-cc87d7ac0ede
-rwxr-xr-x | nagios-check-raid-3ware | 4 |
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"; |