Update changelog and version information

This commit is contained in:
Georg Schönberger
2013-11-28 10:29:16 +01:00
parent 3edd8d10ce
commit 01dc7bf3f2
2 changed files with 12 additions and 3 deletions

View File

@@ -3,7 +3,8 @@ Changelog for check_lsi_raid, a Nagios/Icinga plugin to check LSI RAID
controllers
###############################################################################
Version 1.1 20131119 (Jonas Meurer <jmeurer@inet.de>)
Version 1.1 20131128
* Thanks to Jonas Meurer <jmeurer@inet.de> 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)

View File

@@ -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];