Changes of Revision 36
[-] | Changed | check_openmanage.changes |
x 1
2 ------------------------------------------------------------------- 3 +Tue Jan 8 19:15:05 UTC 2013 - cs@linux-administrator.com 4 + 5 +- Update to version 3.7.9: 6 + * Minor feature enhancements 7 + * enhancement Added a compatibility fix for OMSA 7.2.0, 8 + related to minimum controller firmware where output from OMSA has changed 9 + 10 +------------------------------------------------------------------- 11 Thu Dec 13 22:42:55 UTC 2012 - cs@linux-administrator.com 12 13 - Update to version 3.7.8: 14 |
||
[-] | Changed | check_openmanage.spec ^ |
9 1
2 Summary: A Nagios plugin to check hardware health on Dell servers 3 Name: check_openmanage 4 -Version: 3.7.8 5 +Version: 3.7.9 6 Release: 2%{?dist} 7 License: GPL 8 Group: Applications/System 9 |
||
[+] | Changed | check_openmanage-3.7.9.tar.bz2/CHANGES ^ |
@@ -1,3 +1,9 @@ +3.7.9 2013-01-07 +------------------ + +* Added a compatibility fix for OMSA 7.2.0, related to minimum + controller firmware where output from OMSA has changed + 3.7.8 2012-12-12 ------------------ | ||
[+] | Changed | check_openmanage-3.7.9.tar.bz2/check_openmanage ^ |
@@ -5,7 +5,7 @@ # Monitor Dell server hardware status using Dell OpenManage Server # Administrator, either locally via NRPE, or remotely via SNMP. # -# Copyright (C) 2008-2012 Trond H. Amundsen +# Copyright (C) 2008-2013 Trond H. Amundsen # # 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 @@ -49,7 +49,7 @@ # Version and similar info $NAME = 'check_openmanage'; -$VERSION = '3.7.8'; +$VERSION = '3.7.9'; $AUTHOR = 'Trond H. Amundsen'; $CONTACT = 't.h.amundsen@usit.uio.no'; @@ -116,7 +116,7 @@ # Version and license text $LICENSE = <<"END_LICENSE"; $NAME $VERSION -Copyright (C) 2008-2012 $AUTHOR +Copyright (C) 2008-2013 $AUTHOR License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. @@ -1653,8 +1653,15 @@ $name = get_nonempty_string('Name', $out, 'Unknown controller'); $state = get_nonempty_string('State', $out, 'Unknown state'); $status = get_nonempty_string('Status', $out, 'Unknown'); - $minfw = $out->{'Minimum Required Firmware Version'} ne 'Not Applicable' - ? $out->{'Minimum Required Firmware Version'} : undef; + my $minfw_string = undef; + if (defined $out->{'Minimum Required Firmware Version'}) { + $minfw_string = 'Minimum Required Firmware Version'; + } + elsif (defined $out->{'Latest Available Firmware Version'}) { + $minfw_string = 'Latest Available Firmware Version'; + } + $minfw = $out->{$minfw_string} ne 'Not Applicable' + ? $out->{$minfw_string} : undef; $mindr = $out->{'Minimum Required Driver Version'} ne 'Not Applicable' ? $out->{'Minimum Required Driver Version'} : undef; $firmware = $out->{'Firmware Version'} ne 'Not Applicable' | ||
Changed | check_openmanage-3.7.9.tar.bz2/check_openmanage.exe ^ | |
[+] | Changed | check_openmanage-3.7.9.tar.bz2/check_openmanage.php ^ |
@@ -5,8 +5,8 @@ # Author: Trond Hasle Amundsen # Contact: t.h.amundsen@usit.uio.no # Website: http://folk.uio.no/trondham/software/check_openmanage.html -# Date: 2012-12-12 -# Version: 3.7.8 +# Date: 2013-01-07 +# Version: 3.7.9 # # Copyright (C) 2008-2012 Trond Hasle Amundsen # | ||
[+] | Changed | check_openmanage-3.7.9.tar.bz2/debian/changelog ^ |
@@ -1,3 +1,9 @@ +check-openmanage (3.7.9-1) unstable; urgency=low + + * New upstream release. + + -- Trond Hasle Amundsen <t.h.amundsen@usit.uio.no> Mon, 07 Jan 2013 12:00:00 +0100 + check-openmanage (3.7.8-1) unstable; urgency=low * New upstream release. | ||
[+] | Changed | check_openmanage-3.7.9.tar.bz2/man/check_openmanage.8 ^ |
@@ -2,12 +2,12 @@ .\" Title: check_openmanage .\" Author: Trond Hasle Amundsen <t.h.amundsen@usit.uio.no> .\" Generator: DocBook XSL Stylesheets v1.75.2 <http://docbook.sf.net/> -.\" Date: 12/12/2012 +.\" Date: 01/07/2013 .\" Manual: Nagios plugin .\" Source: check_openmanage .\" Language: English .\" -.TH "CHECK_OPENMANAGE" "8" "12/12/2012" "check_openmanage" "Nagios plugin" +.TH "CHECK_OPENMANAGE" "8" "01/07/2013" "check_openmanage" "Nagios plugin" .\" ----------------------------------------------------------------- .\" * set default formatting .\" ----------------------------------------------------------------- | ||
[+] | Changed | check_openmanage-3.7.9.tar.bz2/man/check_openmanage.conf.5 ^ |
@@ -2,12 +2,12 @@ .\" Title: check_openmanage.conf .\" Author: Trond Hasle Amundsen <t.h.amundsen@usit.uio.no> .\" Generator: DocBook XSL Stylesheets v1.75.2 <http://docbook.sf.net/> -.\" Date: 12/12/2012 +.\" Date: 01/07/2013 .\" Manual: Nagios plugin .\" Source: check_openmanage .\" Language: English .\" -.TH "CHECK_OPENMANAGE\&.C" "5" "12/12/2012" "check_openmanage" "Nagios plugin" +.TH "CHECK_OPENMANAGE\&.C" "5" "01/07/2013" "check_openmanage" "Nagios plugin" .\" ----------------------------------------------------------------- .\" * set default formatting .\" ----------------------------------------------------------------- | ||
[+] | Changed | check_openmanage-3.7.9.tar.bz2/nagios-plugins-openmanage.spec ^ |
@@ -17,7 +17,7 @@ %endif Name: nagios-plugins-openmanage -Version: 3.7.8 +Version: 3.7.9 Release: 1%{?dist} Summary: Nagios plugin to monitor hardware health on Dell servers @@ -83,6 +83,9 @@ %changelog +* Mon Jan 7 2013 Trond Hasle Amundsen <t.h.amundsen@usit.uio.no> - 3.7.9-1 +- Version 3.7.9 + * Wed Dec 12 2012 Trond Hasle Amundsen <t.h.amundsen@usit.uio.no> - 3.7.8-1 - Version 3.7.8 |