Changes of Revision 30
[-] [+] | Changed | check_openmanage.changes |
[-] [+] | Changed | check_openmanage.spec ^ |
[-] [+] | Changed | check_openmanage-3.7.4.tar.bz2/CHANGES ^ |
@@ -1,3 +1,15 @@ +3.7.4 2012-03-29 +------------------ + +* Allow "2c" to be specified as SNMP version via command line and + config file option. Patch from Oskar Liljeblad. +* Corrected a typo for the '--config' command line option +* Added check for 'servicetag', checks whether the servicetag is sane + (i.e. not empty, "unknown" or other bogus value). Thanks to Xavier + Bachelot for a patch. +* fix warranty info link with '-I' or '--htmlinfo' option wrt. new + layout on support.dell.com + 3.7.3 2011-10-05 ------------------ | ||
[-] [+] | Changed | check_openmanage-3.7.4.tar.bz2/check_openmanage ^ |
@@ -5,9 +5,7 @@ # Monitor Dell server hardware status using Dell OpenManage Server # Administrator, either locally via NRPE, or remotely via SNMP. # -# $Id: check_openmanage 21113 2011-10-05 12:53:25Z trondham $ -# -# Copyright (C) 2008-2011 Trond H. Amundsen +# Copyright (C) 2008-2012 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 @@ -51,7 +49,7 @@ # Version and similar info $NAME = 'check_openmanage'; -$VERSION = '3.7.3'; +$VERSION = '3.7.4'; $AUTHOR = 'Trond H. Amundsen'; $CONTACT = 't.h.amundsen@usit.uio.no'; @@ -88,7 +86,7 @@ -H, --hostname Hostname or IP (required for SNMP) -C, --community SNMP community string [default=public] - -P, --protocol SNMP protocol version [default=2] + -P, --protocol SNMP protocol version [default=2c] --port SNMP port number [default=161] -6, --ipv6 Use IPv6 instead of IPv4 [default=no] --tcp Use TCP instead of UDP [default=no] @@ -118,7 +116,7 @@ # Version and license text $LICENSE = <<"END_LICENSE"; $NAME $VERSION -Copyright (C) 2008-2011 $AUTHOR +Copyright (C) 2008-2012 $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. @@ -156,7 +154,7 @@ 'port' => 161, # default SNMP port 'hostname' => undef, # hostname or IP 'community' => 'public', # SMNP v1 or v2c - 'protocol' => 2, # default SNMP protocol 2c + 'protocol' => '2c', # default SNMP protocol 2c 'ipv6' => 0, # default is IPv4 'tcp' => 0, # default is UDP 'username' => undef, # SMNP v3 @@ -177,7 +175,7 @@ 'w|warning=s' => \@{ $opt{warning} }, 'tempunit=s' => \$opt{tempunit}, 'F|fahrenheit' => \$opt{fahrenheit}, - 'f|configfile=s' => \$opt{configfile}, + 'f|config=s' => \$opt{configfile}, 't|timeout=i' => \$opt{timeout}, 'd|debug' => \$opt{debug}, 'h|help' => \$opt{help}, @@ -200,7 +198,7 @@ 'port=i' => \$opt{port}, 'H|hostname=s' => \$opt{hostname}, 'C|community=s' => \$opt{community}, - 'P|protocol=i' => \$opt{protocol}, + 'P|protocol=s' => \$opt{protocol}, '6|ipv6' => \$opt{ipv6}, 'tcp' => \$opt{tcp}, 'U|username=s' => \$opt{username}, @@ -244,6 +242,7 @@ 'alertlog' => 0, # check the alert log 'esmlog' => 0, # check the ESM log (hardware log) 'esmhealth' => 1, # check the ESM log overall health + 'servicetag' => 1, # check that the servicetag is sane ); # Messages @@ -648,11 +647,11 @@ my $keyword = shift; my $conf = $opt2config{protocol}; if (defined $tiny->{$keyword}->{$conf} and $tiny->{$keyword}->{$conf} ne q{}) { - if ($tiny->{$keyword}->{$conf} =~ m{\A 1|2|3 \z}xms) { + if ($tiny->{$keyword}->{$conf} =~ m{\A (1|2(?:c)?|3) \z}xms) { $opt{protocol} = $tiny->{$keyword}->{$conf}; } else { - report('other', "CONFIG ERROR: Rvalue for '$conf' must be '1', '2' or '3'", $E_UNKNOWN); + report('other', "CONFIG ERROR: Rvalue for '$conf' must be '1', '2', '2c' or '3'", $E_UNKNOWN); } } return; @@ -869,14 +868,14 @@ $param{'-domain'} = "$transport/$ipversion"; # Parameters for SNMP v3 - if ($opt{protocol} == 3) { + if ($opt{protocol} eq '3') { # Username is mandatory if (defined $opt{username}) { $param{'-username'} = $opt{username}; } else { - print "SNMP ERROR: With SNMPv3 the username must be specified\n"; + print "SNMP ERROR: With SNMPv3 a username must be specified\n"; exit $E_UNKNOWN; } @@ -906,7 +905,7 @@ $param{'-privprotocol'} = $opt{privprotocol}; } else { - print "SNMP ERROR: Unknown privprotocol '$opt{privprotocol}', " + print "SNMP ERROR: Unknown or invalid privprotocol [$opt{privprotocol}], " . "must be one of [des|aes|aes128|3des|3desde]\n"; exit $E_UNKNOWN; } @@ -918,18 +917,18 @@ $param{'-authprotocol'} = $opt{authprotocol}; } else { - print "SNMP ERROR: Unknown authprotocol '$opt{authprotocol}', " + print "SNMP ERROR: Unknown or invalid authprotocol [$opt{authprotocol}], " . "must be one of [md5|sha]\n"; exit $E_UNKNOWN; } } } # Parameters for SNMP v2c or v1 - elsif ($opt{protocol} == 2 or $opt{protocol} == 1) { + elsif ($opt{protocol} =~ m{\A (1|2(?:c)?) \z}xms) { $param{'-community'} = $opt{community}; } else { - print "SNMP ERROR: Unknown SNMP version '$opt{protocol}'\n"; + print "SNMP ERROR: Unknown or invalid SNMP version [$opt{protocol}]\n"; exit $E_UNKNOWN; } @@ -1416,58 +1415,52 @@ # Return the URL for warranty information for a server with a given # serial number (servicetag) sub warranty_url { - my $tag = shift; + my $tag = shift; + my $url_start = 'http://www.dell.com/support/troubleshooting'; + my $url_end = 'Index?t=warranty&servicetag'; - # Dell support sites for different parts of the world - my %supportsite - = ( - 'emea' => 'http://support.euro.dell.com/support/topics/topic.aspx/emea/shared/support/my_systems_info/', - 'ap' => 'http://supportapj.dell.com/support/topics/topic.aspx/ap/shared/support/my_systems_info/en/details?', - 'glob' => 'http://support.dell.com/support/topics/global.aspx/support/my_systems_info/details?', - ); - - # warranty URLs for different country codes - my %url + my %country = ( # EMEA - 'at' => $supportsite{emea} . 'de/details?c=at&l=de&ServiceTag=', # Austria - 'be' => $supportsite{emea} . 'nl/details?c=be&l=nl&ServiceTag=', # Belgium - 'cz' => $supportsite{emea} . 'cs/details?c=cz&l=cs&ServiceTag=', # Czech Republic - 'de' => $supportsite{emea} . 'de/details?c=de&l=de&ServiceTag=', # Germany - 'dk' => $supportsite{emea} . 'da/details?c=dk&l=da&ServiceTag=', # Denmark - 'es' => $supportsite{emea} . 'es/details?c=es&l=es&ServiceTag=', # Spain - 'fi' => $supportsite{emea} . 'fi/details?c=fi&l=fi&ServiceTag=', # Finland - 'fr' => $supportsite{emea} . 'fr/details?c=fr&l=fr&ServiceTag=', # France - 'gr' => $supportsite{emea} . 'en/details?c=gr&l=el&ServiceTag=', # Greece - 'it' => $supportsite{emea} . 'it/details?c=it&l=it&ServiceTag=', # Italy - 'il' => $supportsite{emea} . 'en/details?c=il&l=en&ServiceTag=', # Israel - 'me' => $supportsite{emea} . 'en/details?c=me&l=en&ServiceTag=', # Middle East - 'no' => $supportsite{emea} . 'no/details?c=no&l=no&ServiceTag=', # Norway - 'nl' => $supportsite{emea} . 'nl/details?c=nl&l=nl&ServiceTag=', # The Netherlands - 'pl' => $supportsite{emea} . 'pl/details?c=pl&l=pl&ServiceTag=', # Poland - 'pt' => $supportsite{emea} . 'en/details?c=pt&l=pt&ServiceTag=', # Portugal - 'ru' => $supportsite{emea} . 'ru/details?c=ru&l=ru&ServiceTag=', # Russia - 'se' => $supportsite{emea} . 'sv/details?c=se&l=sv&ServiceTag=', # Sweden - 'uk' => $supportsite{emea} . 'en/details?c=uk&l=en&ServiceTag=', # United Kingdom - 'za' => $supportsite{emea} . 'en/details?c=za&l=en&ServiceTag=', # South Africa + at => { c => 'at', l => 'de' }, # Austria + be => { c => 'be', l => 'nl' }, # Belgium + cz => { c => 'cz', l => 'cs' }, # Czech Republic + de => { c => 'de', l => 'de' }, # Germany + dk => { c => 'dk', l => 'da' }, # Denmark + es => { c => 'es', l => 'es' }, # Spain + fi => { c => 'fi', l => 'fi' }, # Finland + fr => { c => 'fr', l => 'fr' }, # France + gr => { c => 'gr', l => 'el' }, # Greece + it => { c => 'it', l => 'it' }, # Italy + il => { c => 'il', l => 'en' }, # Israel + me => { c => 'me', l => 'en' }, # Middle East + no => { c => 'no', l => 'no' }, # Norway + nl => { c => 'nl', l => 'nl' }, # The Netherlands + pl => { c => 'pl', l => 'pl' }, # Poland + pt => { c => 'pt', l => 'pt' }, # Portugal + ru => { c => 'ru', l => 'ru' }, # Russia + se => { c => 'se', l => 'sv' }, # Sweden + uk => { c => 'uk', l => 'en' }, # United Kingdom + za => { c => 'za', l => 'en' }, # South Africa # America - 'br' => $supportsite{glob} . 'c=br&l=pt&ServiceTag=', # Brazil - 'ca' => $supportsite{glob} . 'c=ca&l=en&ServiceTag=', # Canada - 'mx' => $supportsite{glob} . 'c=mx&l=es&ServiceTag=', # Mexico - 'us' => $supportsite{glob} . 'c=us&l=en&ServiceTag=', # USA + br => { c => 'br', l => 'pt' }, # Brazil + ca => { c => 'ca', l => 'en' }, # Canada + mx => { c => 'mx', l => 'es' }, # Mexico + us => { c => 'us', l => 'en' }, # USA # Asia/Pacific - 'au' => $supportsite{ap} . 'c=au&l=en&ServiceTag=', # Australia - 'cn' => $supportsite{ap} . 'c=cn&l=zh&ServiceTag=', # China - 'in' => $supportsite{ap} . 'c=in&l=en&ServiceTag=', # India - # default fallback - 'XX' => $supportsite{glob} . 'ServiceTag=', # default + au => { c => 'au', l => 'en' }, # Australia + cn => { c => 'cn', l => 'zh' }, # China + in => { c => 'in', l => 'en' }, # India + jp => { c => 'jp', l => 'ja' }, # Japan ); - if (exists $url{$opt{htmlinfo}}) { - return $url{$opt{htmlinfo}} . $tag; + if (exists $country{$opt{htmlinfo}}) { + return sprintf '%s/%s/%s/nodhs1/%s=%s', + $url_start, $country{$opt{htmlinfo}}->{c}, + $country{$opt{htmlinfo}}->{l}, $url_end, $tag; } else { - return $url{XX} . $tag; + return sprintf '%s/%s=%s', $url_start, $url_end, $tag; } } @@ -4649,6 +4642,24 @@ return; } +#----------------------------------------- +# CHASSIS: Check service tag +#----------------------------------------- +sub check_servicetag { + if ($sysinfo{serial} !~ m{\A [0-9A-Z]{7} \z}xms) { + my $msg = $sysinfo{serial} =~ m{\A \s* \z}xms + ? q{Chassis Service Tag is empty} + : sprintf q{Chassis Service Tag is bogus: '%s'}, $sysinfo{serial}; + report('other', $msg, $E_WARNING); + } + else { + my $msg = sprintf 'Chassis Service Tag is sane'; + report('other', $msg, $E_OK); + } + return; +} + + # # Handy function for checking all storage components # @@ -5022,6 +5033,14 @@ # Main program #===================================================================== +# Get system information +get_sysinfo(); + +# Get firmware info if requested via option +if ($opt{okinfo} >= 1) { + get_firmware_info(); +} + # Here we do the actual checking of components # Check global status if applicable if ($global) { @@ -5043,12 +5062,17 @@ if ($check{alertlog}) { check_alertlog(); } if ($check{esmlog}) { check_esmlog(); } if ($check{esmhealth}) { check_esmlog_health(); } - +if ($check{servicetag}) { check_servicetag(); } #--------------------------------------------------------------------- # Finish up #--------------------------------------------------------------------- +# Close SNMP session +if ($snmp) { + $snmp_session->close; +} + # Counter variable %nagios_alert_count = ( @@ -5058,19 +5082,6 @@ 'UNKNOWN' => 0, ); -# Get system information -get_sysinfo(); - -# Get firmware info if requested via option -if ($opt{okinfo} >= 1) { - get_firmware_info(); -} - -# Close SNMP session -if ($snmp) { - $snmp_session->close; -} - # Print messages if ($opt{debug}) { # finding the mode of operation | ||
[-] [+] | Changed | check_openmanage-3.7.4.tar.bz2/check_openmanage.8 ^ |
@@ -124,7 +124,7 @@ .\" ======================================================================== .\" .IX Title "CHECK_OPENMANAGE 8" -.TH CHECK_OPENMANAGE 8 "2011-08-26" "check_openmanage 3.7.3" "Nagios plugin" +.TH CHECK_OPENMANAGE 8 "2012-03-09" "check_openmanage 3.7.4" "Nagios plugin" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -388,9 +388,16 @@ option triggers \s-1SNMP\s0 mode. .IP "\-P, \-\-protocol \fI\s-1PROTOCOL\s0\fR" 4 .IX Item "-P, --protocol PROTOCOL" -\&\s-1SNMP\s0 protocol version. This option is optional and expects a digit -(i.e. \f(CW1\fR, \f(CW2\fR or \f(CW3\fR) to define the \s-1SNMP\s0 version. The default is -\&\f(CW2\fR, i.e. \s-1SNMP\s0 version 2c. +\&\s-1SNMP\s0 protocol version. This option is optional and expects either of +the following: +.Sp +.Vb 3 +\& "1" : SNMP version 1 +\& "2c" or "2" : SNMP version 2c +\& "3" : SNMP version 3 +.Ve +.Sp +The default is \f(CW\*(C`2c\*(C'\fR. .IP "\-C, \-\-community \fI\s-1COMMUNITY\s0\fR" 4 .IX Item "-C, --community COMMUNITY" This option expects a string that is to be used as the \s-1SNMP\s0 community | ||
[-] [+] | Changed | check_openmanage-3.7.4.tar.bz2/check_openmanage.conf.5 ^ |
@@ -124,7 +124,7 @@ .\" ======================================================================== .\" .IX Title "CHECK_OPENMANAGE.CONF 5" -.TH CHECK_OPENMANAGE.CONF 5 "2011-08-26" "check_openmanage 3.7.3" "Nagios plugin" +.TH CHECK_OPENMANAGE.CONF 5 "2012-03-09" "check_openmanage 3.7.4" "Nagios plugin" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -360,7 +360,7 @@ The \s-1SNMP\s0 protocol version can be set with \f(CW\*(C`snmp_version\*(C'\fR. Example: .Sp .Vb 1 -\& snmp_version = 2 +\& snmp_version = 2c .Ve .Sp Corresponding command line option: \f(CW\*(C`\-P\*(C'\fR or \f(CW\*(C`\-\-protocol\*(C'\fR | ||
[-] [+] | Changed | check_openmanage-3.7.4.tar.bz2/check_openmanage.conf.pod ^ |
@@ -234,7 +234,7 @@ The SNMP protocol version can be set with C<snmp_version>. Example: - snmp_version = 2 + snmp_version = 2c Corresponding command line option: C<-P> or C<--protocol> | ||
Changed | check_openmanage-3.7.4.tar.bz2/check_openmanage.exe ^ | |
[-] [+] | Changed | check_openmanage-3.7.4.tar.bz2/check_openmanage.php ^ |
@@ -6,7 +6,7 @@ # Website: http://folk.uio.no/trondham/software/check_openmanage.html # Date: 2011-08-15 # -# $Id: check_openmanage.php 20681 2011-08-16 18:43:44Z trondham $ +# $Id$ # # Copyright (C) 2008-2011 Trond H. Amundsen # | ||
[-] [+] | Changed | check_openmanage-3.7.4.tar.bz2/check_openmanage.pod ^ |
@@ -2,7 +2,7 @@ # # pod2man -s 8 -r "`./check_openmanage -V | head -n 1`" -c 'Nagios plugin' check_openmanage.pod check_openmanage.8 # -# $Id: check_openmanage.pod 20778 2011-08-26 11:14:52Z trondham $ +# $Id$ =head1 NAME @@ -301,9 +301,14 @@ =item -P, --protocol I<PROTOCOL> -SNMP protocol version. This option is optional and expects a digit -(i.e. C<1>, C<2> or C<3>) to define the SNMP version. The default is -C<2>, i.e. SNMP version 2c. +SNMP protocol version. This option is optional and expects either of +the following: + + "1" : SNMP version 1 + "2c" or "2" : SNMP version 2c + "3" : SNMP version 3 + +The default is C<2c>. =item -C, --community I<COMMUNITY> | ||
[-] [+] | Changed | check_openmanage-3.7.4.tar.bz2/debian/changelog ^ |
@@ -1,3 +1,9 @@ +check-openmanage (3.7.4-1) unstable; urgency=low + + * New upstream release. + + -- Trond Hasle Amundsen <t.h.amundsen@usit.uio.no> Thu, 29 Mar 2012 13:00:00 +0100 + check-openmanage (3.7.3-1) unstable; urgency=low * New upstream release. | ||
[-] [+] | Changed | check_openmanage-3.7.4.tar.bz2/example.conf ^ |
@@ -1,6 +1,7 @@ # Nagios Open Manage plugin configuration file # -# See http://folk.uio.no/trondham/software/check_openmanage.html#id111 for details +# For details, see +# http://folk.uio.no/trondham/software/check_openmanage.html#configuration-file # # General section @@ -32,6 +33,7 @@ # check_intrusion = true # check_sdcard = true # check_esmhealth = true +# check_servicetag = true # check_esmlog = false # check_alertlog = false # check_everything = false | ||
[-] [+] | Changed | check_openmanage-3.7.4.tar.bz2/nagios-plugins-openmanage.spec ^ |
@@ -1,12 +1,20 @@ -# Definitions used throughout the spec file +# Name of the plugin %global plugin check_openmanage -%global nagiospluginsdir %{_libdir}/nagios/plugins # No binaries here, do not build a debuginfo package %global debug_package %{nil} +# SUSE installs Nagios plugins under /usr/lib, even on 64-bit +# It also uses noarch for non-binary Nagios plugins +%if %{defined suse_version} +%global nagiospluginsdir /usr/lib/nagios/plugins +BuildArch: noarch +%else +%global nagiospluginsdir %{_libdir}/nagios/plugins +%endif + Name: nagios-plugins-openmanage -Version: 3.7.3 +Version: 3.7.4 Release: 1%{?dist} Summary: Nagios plugin to monitor hardware health on Dell servers @@ -17,13 +25,19 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: /usr/bin/pod2man +# Building requires pod2man +BuildRequires: perl +# Rpmbuild doesn't find these perl dependencies Requires: perl(Config::Tiny) Requires: perl(Net::SNMP) Requires: perl(Crypt::Rijndael) + +# Owns the nagios plugins directory Requires: nagios-plugins +# Make the transition to Fedora/EPEL packages easier for existing +# users of the non-Fedora/EPEL RPM packages Provides: nagios-plugins-check-openmanage = %{version}-%{release} Obsoletes: nagios-plugins-check-openmanage < 3.7.2-3 @@ -39,6 +53,7 @@ %prep %setup -q -n %{plugin}-%{version} +rm -f %{plugin}.exe %build pod2man -s 8 -r "%{plugin} %{version}" -c "Nagios plugin" %{plugin}.pod %{plugin}.8 @@ -49,23 +64,34 @@ install -Dp -m 0755 %{plugin} %{buildroot}%{nagiospluginsdir}/%{plugin} install -Dp -m 0644 %{plugin}.8 %{buildroot}%{_mandir}/man8/%{plugin}.8 install -Dp -m 0644 %{plugin}.conf.5 %{buildroot}%{_mandir}/man5/%{plugin}.conf.5 -install -Dp -m 0644 example.conf %{buildroot}%{_sysconfdir}/nagios/%{plugin}.conf %clean rm -rf %{buildroot} %files %defattr(-, root, root, -) -%doc README COPYING CHANGES -%{nagiospluginsdir}/* -%{_mandir}/man8/*.8* -%{_mandir}/man5/*.5* -%dir %{_sysconfdir}/nagios -%config(noreplace) %{_sysconfdir}/nagios/* +%doc README COPYING CHANGES example.conf +%{nagiospluginsdir}/%{plugin} +%{_mandir}/man8/%{plugin}.8* +%{_mandir}/man5/%{plugin}.conf.5* %changelog -* Wed Oct 5 2011 Trond H. Amundsen <t.h.amundsen@usit.uio.no> - 3.7.3-1 +* Thu Mar 29 2012 Trond Hasle Amundsen <t.h.amundsen@usit.uio.no> - 3.7.4-1 +- Version 3.7.4 + +* Mon Dec 12 2011 Trond Hasle Amundsen <t.h.amundsen@usit.uio.no> - 3.7.3-4 +- Added some SUSE spec file compatibility + +* Mon Nov 28 2011 Trond Hasle Amundsen <t.h.amundsen@usit.uio.no> - 3.7.3-3 +- Provide example config file as documentation rather than installing + it under /etc/nagios +- Remove win32 binary in prep section + +* Tue Nov 15 2011 Trond Hasle Amundsen <t.h.amundsen@usit.uio.no> - 3.7.3-2 +- Spec file changes which address issues raised in rhbz#743615 + +* Wed Oct 5 2011 Trond Hasle Amundsen <t.h.amundsen@usit.uio.no> - 3.7.3-1 - Version 3.7.3 - RPM name changed to nagios-plugins-openmanage - Added obsoletes for old name @@ -77,151 +103,151 @@ - Remove some useless command macros. - Fix Obsoletes/Provides. -* Mon Sep 19 2011 Trond H. Amundsen <t.h.amundsen@usit.uio.no> - 3.7.2-1 +* Mon Sep 19 2011 Trond Hasle Amundsen <t.h.amundsen@usit.uio.no> - 3.7.2-1 - Version 3.7.2 -* Mon Aug 22 2011 Trond H. Amundsen <t.h.amundsen@usit.uio.no> - 3.7.1-1 +* Mon Aug 22 2011 Trond Hasle Amundsen <t.h.amundsen@usit.uio.no> - 3.7.1-1 - Version 3.7.1 -* Mon Aug 15 2011 Trond H. Amundsen <t.h.amundsen@usit.uio.no> - 3.7.0-1 +* Mon Aug 15 2011 Trond Hasle Amundsen <t.h.amundsen@usit.uio.no> - 3.7.0-1 - Version 3.7.0 -* Tue Jun 06 2011 Trond H. Amundsen <t.h.amundsen@usit.uio.no> - 3.6.8-1 +* Tue Jun 06 2011 Trond Hasle Amundsen <t.h.amundsen@usit.uio.no> - 3.6.8-1 - Version 3.6.8 -* Thu May 12 2011 Trond H. Amundsen <t.h.amundsen@usit.uio.no> - 3.6.7-1 +* Thu May 12 2011 Trond Hasle Amundsen <t.h.amundsen@usit.uio.no> - 3.6.7-1 - Version 3.6.7 -* Thu Apr 28 2011 Trond H. Amundsen <t.h.amundsen@usit.uio.no> - 3.6.6-1 +* Thu Apr 28 2011 Trond Hasle Amundsen <t.h.amundsen@usit.uio.no> - 3.6.6-1 - Version 3.6.6 -* Wed Feb 9 2011 Trond H. Amundsen <t.h.amundsen@usit.uio.no> - 3.6.5-1 +* Wed Feb 9 2011 Trond Hasle Amundsen <t.h.amundsen@usit.uio.no> - 3.6.5-1 - Version 3.6.5 -* Tue Jan 4 2011 Trond H. Amundsen <t.h.amundsen@usit.uio.no> - 3.6.4-2 +* Tue Jan 4 2011 Trond Hasle Amundsen <t.h.amundsen@usit.uio.no> - 3.6.4-2 - Don't compress the man page, rpmbuild takes care of that. Thanks to Jose Pedro Oliveira for a patch that fixes this. -* Tue Jan 4 2011 Trond H. Amundsen <t.h.amundsen@usit.uio.no> - 3.6.4-1 +* Tue Jan 4 2011 Trond Hasle Amundsen <t.h.amundsen@usit.uio.no> - 3.6.4-1 - Version 3.6.4 - Initial build with new spec file - Spec file adapted to Fedora/EPEL standards -* Mon Dec 13 2010 Trond H. Amundsen <t.h.amundsen@usit.uio.no> - 3.6.3-1 +* Mon Dec 13 2010 Trond Hasle Amundsen <t.h.amundsen@usit.uio.no> - 3.6.3-1 - Version 3.6.3 -* Thu Nov 25 2010 Trond H. Amundsen <t.h.amundsen@usit.uio.no> - 3.6.2-1 +* Thu Nov 25 2010 Trond Hasle Amundsen <t.h.amundsen@usit.uio.no> - 3.6.2-1 - Version 3.6.2 -* Tue Nov 2 2010 Trond H. Amundsen <t.h.amundsen@usit.uio.no> - 3.6.1-1 +* Tue Nov 2 2010 Trond Hasle Amundsen <t.h.amundsen@usit.uio.no> - 3.6.1-1 - Version 3.6.1 -* Mon Aug 30 2010 Trond H. Amundsen <t.h.amundsen@usit.uio.no> - 3.6.0-1 +* Mon Aug 30 2010 Trond Hasle Amundsen <t.h.amundsen@usit.uio.no> - 3.6.0-1 - Version 3.6.0 -* Wed Jul 14 2010 Trond H. Amundsen <t.h.amundsen@usit.uio.no> - 3.5.10-1 +* Wed Jul 14 2010 Trond Hasle Amundsen <t.h.amundsen@usit.uio.no> - 3.5.10-1 - Version 3.5.10 -* Tue Jun 29 2010 Trond H. Amundsen <t.h.amundsen@usit.uio.no> - 3.5.9-1 +* Tue Jun 29 2010 Trond Hasle Amundsen <t.h.amundsen@usit.uio.no> - 3.5.9-1 - Version 3.5.9 -* Thu Jun 17 2010 Trond H. Amundsen <t.h.amundsen@usit.uio.no> - 3.5.8-1 +* Thu Jun 17 2010 Trond Hasle Amundsen <t.h.amundsen@usit.uio.no> - 3.5.8-1 - Version 3.5.8 -* Wed Mar 19 2010 Trond H. Amundsen <t.h.amundsen@usit.uio.no> - 3.5.7-1 +* Wed Mar 19 2010 Trond Hasle Amundsen <t.h.amundsen@usit.uio.no> - 3.5.7-1 - Version 3.5.7 -* Tue Feb 23 2010 Trond H. Amundsen <t.h.amundsen@usit.uio.no> - 3.5.6-1 +* Tue Feb 23 2010 Trond Hasle Amundsen <t.h.amundsen@usit.uio.no> - 3.5.6-1 - Version 3.5.6 -* Fri Jan 22 2010 Trond H. Amundsen <t.h.amundsen@usit.uio.no> - 3.5.5-1 +* Fri Jan 22 2010 Trond Hasle Amundsen <t.h.amundsen@usit.uio.no> - 3.5.5-1 - Version 3.5.5 -* Wed Jan 13 2010 Trond H. Amundsen <t.h.amundsen@usit.uio.no> - 3.5.4-1 +* Wed Jan 13 2010 Trond Hasle Amundsen <t.h.amundsen@usit.uio.no> - 3.5.4-1 - Version 3.5.4 -* Thu Dec 17 2009 Trond H. Amundsen <t.h.amundsen@usit.uio.no> - 3.5.3-1 +* Thu Dec 17 2009 Trond Hasle Amundsen <t.h.amundsen@usit.uio.no> - 3.5.3-1 - Version 3.5.3 -* Tue Nov 17 2009 Trond H. Amundsen <t.h.amundsen@usit.uio.no> - 3.5.2-1 +* Tue Nov 17 2009 Trond Hasle Amundsen <t.h.amundsen@usit.uio.no> - 3.5.2-1 - Version 3.5.2 -* Thu Oct 22 2009 Trond H. Amundsen <t.h.amundsen@usit.uio.no> - 3.5.1-1 +* Thu Oct 22 2009 Trond Hasle Amundsen <t.h.amundsen@usit.uio.no> - 3.5.1-1 - Version 3.5.1 -* Tue Oct 13 2009 Trond H. Amundsen <t.h.amundsen@usit.uio.no> - 3.5.0-1 +* Tue Oct 13 2009 Trond Hasle Amundsen <t.h.amundsen@usit.uio.no> - 3.5.0-1 - Version 3.5.0 - New location for the manual page (section 3 -> 8) -* Fri Aug 7 2009 Trond H. Amundsen <t.h.amundsen@usit.uio.no> - 3.4.9-1 +* Fri Aug 7 2009 Trond Hasle Amundsen <t.h.amundsen@usit.uio.no> - 3.4.9-1 - Version 3.4.9 -* Fri Jul 31 2009 Trond H. Amundsen <t.h.amundsen@usit.uio.no> - 3.4.8-1 +* Fri Jul 31 2009 Trond Hasle Amundsen <t.h.amundsen@usit.uio.no> - 3.4.8-1 - Version 3.4.8 -* Fri Jul 24 2009 Trond H. Amundsen <t.h.amundsen@usit.uio.no> - 3.4.7-1 +* Fri Jul 24 2009 Trond Hasle Amundsen <t.h.amundsen@usit.uio.no> - 3.4.7-1 - Version 3.4.7 -* Tue Jul 7 2009 Trond H. Amundsen <t.h.amundsen@usit.uio.no> - 3.4.6-1 +* Tue Jul 7 2009 Trond Hasle Amundsen <t.h.amundsen@usit.uio.no> - 3.4.6-1 - Version 3.4.6 -* Mon Jun 22 2009 Trond H. Amundsen <t.h.amundsen@usit.uio.no> - 3.4.5-1 +* Mon Jun 22 2009 Trond Hasle Amundsen <t.h.amundsen@usit.uio.no> - 3.4.5-1 - Version 3.4.5 -* Mon Jun 22 2009 Trond H. Amundsen <t.h.amundsen@usit.uio.no> - 3.4.4-1 +* Mon Jun 22 2009 Trond Hasle Amundsen <t.h.amundsen@usit.uio.no> - 3.4.4-1 - Version 3.4.4 -* Thu Jun 11 2009 Trond H. Amundsen <t.h.amundsen@usit.uio.no> - 3.4.3-1 +* Thu Jun 11 2009 Trond Hasle Amundsen <t.h.amundsen@usit.uio.no> - 3.4.3-1 - Version 3.4.3 -* Wed Jun 3 2009 Trond H. Amundsen <t.h.amundsen@usit.uio.no> - 3.4.2-1 +* Wed Jun 3 2009 Trond Hasle Amundsen <t.h.amundsen@usit.uio.no> - 3.4.2-1 - Version 3.4.2 -* Mon May 27 2009 Trond H. Amundsen <t.h.amundsen@usit.uio.no> - 3.4.1-1 +* Mon May 27 2009 Trond Hasle Amundsen <t.h.amundsen@usit.uio.no> - 3.4.1-1 - Version 3.4.1 -* Mon May 25 2009 Trond H. Amundsen <t.h.amundsen@usit.uio.no> - 3.4.0-1 +* Mon May 25 2009 Trond Hasle Amundsen <t.h.amundsen@usit.uio.no> - 3.4.0-1 - Version 3.4.0 -* Tue May 5 2009 Trond H. Amundsen <t.h.amundsen@usit.uio.no> - 3.3.2-1 +* Tue May 5 2009 Trond Hasle Amundsen <t.h.amundsen@usit.uio.no> - 3.3.2-1 - Version 3.3.2 -* Tue Apr 28 2009 Trond H. Amundsen <t.h.amundsen@usit.uio.no> - 3.3.1-1 +* Tue Apr 28 2009 Trond Hasle Amundsen <t.h.amundsen@usit.uio.no> - 3.3.1-1 - Version 3.3.1 -* Tue Apr 7 2009 Trond H. Amundsen <t.h.amundsen@usit.uio.no> - 3.3.0-1 +* Tue Apr 7 2009 Trond Hasle Amundsen <t.h.amundsen@usit.uio.no> - 3.3.0-1 - Version 3.3.0 -* Sun Mar 29 2009 Trond H. Amundsen <t.h.amundsen@usit.uio.no> - 3.2.7-1 +* Sun Mar 29 2009 Trond Hasle Amundsen <t.h.amundsen@usit.uio.no> - 3.2.7-1 - Version 3.2.7 -* Thu Mar 5 2009 Trond H. Amundsen <t.h.amundsen@usit.uio.no> - 3.2.6-1 +* Thu Mar 5 2009 Trond Hasle Amundsen <t.h.amundsen@usit.uio.no> - 3.2.6-1 - Version 3.2.6 -* Tue Feb 24 2009 Trond H. Amundsen <t.h.amundsen@usit.uio.no> - 3.2.5-1 +* Tue Feb 24 2009 Trond Hasle Amundsen <t.h.amundsen@usit.uio.no> - 3.2.5-1 - Version 3.2.5 - take 64bit (other libdir) into consideration -* Tue Feb 17 2009 Trond H. Amundsen <t.h.amundsen@usit.uio.no> - 3.2.4-1 +* Tue Feb 17 2009 Trond Hasle Amundsen <t.h.amundsen@usit.uio.no> - 3.2.4-1 - Version 3.2.4 -* Mon Feb 9 2009 Trond H. Amundsen <t.h.amundsen@usit.uio.no> - 3.2.3-1 +* Mon Feb 9 2009 Trond Hasle Amundsen <t.h.amundsen@usit.uio.no> - 3.2.3-1 - Version 3.2.3 -* Tue Feb 3 2009 Trond H. Amundsen <t.h.amundsen@usit.uio.no> - 3.2.2-1 +* Tue Feb 3 2009 Trond Hasle Amundsen <t.h.amundsen@usit.uio.no> - 3.2.2-1 - Version 3.2.2 -* Tue Feb 3 2009 Trond H. Amundsen <t.h.amundsen@usit.uio.no> - 3.2.1-1 +* Tue Feb 3 2009 Trond Hasle Amundsen <t.h.amundsen@usit.uio.no> - 3.2.1-1 - Version 3.2.1 -* Tue Jan 27 2009 Trond H. Amundsen <t.h.amundsen@usit.uio.no> - 3.2.0-1 +* Tue Jan 27 2009 Trond Hasle Amundsen <t.h.amundsen@usit.uio.no> - 3.2.0-1 - Version 3.2.0 -* Sat Dec 20 2008 Trond H. Amundsen <t.h.amundsen@usit.uio.no> - 3.0.2-1 +* Sat Dec 20 2008 Trond Hasle Amundsen <t.h.amundsen@usit.uio.no> - 3.0.2-1 - Version 3.0.2 -* Thu Dec 4 2008 Trond H. Amundsen <t.h.amundsen@usit.uio.no> - 3.0.0-1 +* Thu Dec 4 2008 Trond Hasle Amundsen <t.h.amundsen@usit.uio.no> - 3.0.0-1 - Version 3.0.0 -* Wed Nov 19 2008 Trond H. Amundsen <t.h.amundsen@usit.uio.no> - 2.1.0-0 +* Wed Nov 19 2008 Trond Hasle Amundsen <t.h.amundsen@usit.uio.no> - 2.1.0-0 - first RPM release |