diff --git a/changelog b/changelog index 968af3a..8db2b86 100644 --- a/changelog +++ b/changelog @@ -3,7 +3,8 @@ Changelog for check_lsi_raid, a Nagios/Icinga plugin to check LSI RAID controllers ############################################################################### -Version 1.1 20131119 (Jonas Meurer ) +Version 1.1 20131128 + * Thanks to Jonas Meurer for the patches * Minor fix: uninitialized variables for bbu=0 * Typo fix: "other error count" instead of "media error count" * Output STATUS variable for nagios performance data processing @@ -18,3 +19,10 @@ Version 1.0 20131028 * Fix storcli path checking * Fix rebuild progress for physical devices * Fix temperature check for a real integer + +List of contributors: + * Grubhofer Martin (s1110239013@students.fh-hagenberg.at) + * Scheipner Alexander (s1110239032@students.fh-hagenberg.at) + * Werner Sebastian (s1110239038@students.fh-hagenberg.at) + * Georg Schoenberger (gschoenberger@thomas-krenn.com) + * Jonas Meurer (jmeurer@inet.de) \ No newline at end of file diff --git a/check_lsi_raid b/check_lsi_raid index 8c2775a..b534b78 100755 --- a/check_lsi_raid +++ b/check_lsi_raid @@ -11,6 +11,7 @@ # Scheipner Alexander (s1110239032@students.fh-hagenberg.at) # Werner Sebastian (s1110239038@students.fh-hagenberg.at) # Georg Schoenberger (gschoenberger@thomas-krenn.com) +# Jonas Meurer (jmeurer@inet.de) # # This program is free software; you can redistribute it and/or modify it under # the terms of the GNU General Public License as published by the Free Software @@ -30,7 +31,7 @@ use warnings; use Getopt::Long qw(:config no_ignore_case); our $VERBOSITY = 0; -our $VERSION = "1.0"; +our $VERSION = "1.1"; our $NAME = "check_lsi_raid: Nagios/Icinga plugin to check LSI Raid Controller status"; our $C_TEMP_WARNING = 80; our $C_TEMP_CRITICAL = 90; @@ -764,7 +765,7 @@ sub getBBUStatus { # Returns information about: # - Cache Vault module status -# - Temperature, Firmware, GasGauge +# - If CacheVault must be replaced sub getCVStatus { my $sudo = $_[0]; my $storcli = $_[1];