[Pkg-nagios-changes] [pkg-nagios] r1807 - in nagios-plugins/trunk/debian: . patches

Jan Wagner waja at alioth.debian.org
Tue Dec 8 18:51:12 UTC 2009


tags 534604 pending
thanks

Author: waja
Date: 2009-12-08 18:51:11 +0000 (Tue, 08 Dec 2009)
New Revision: 1807

Added:
   nagios-plugins/trunk/debian/patches/42_check_linux_raid_fix_r10.dpatch
Modified:
   nagios-plugins/trunk/debian/changelog
   nagios-plugins/trunk/debian/patches/00list
Log:
fix raid levels with more than one digit

Modified: nagios-plugins/trunk/debian/changelog
===================================================================
--- nagios-plugins/trunk/debian/changelog	2009-12-07 13:50:58 UTC (rev 1806)
+++ nagios-plugins/trunk/debian/changelog	2009-12-08 18:51:11 UTC (rev 1807)
@@ -25,6 +25,8 @@
     - Add 41_check_ping_detect_args.dpatch, that to Thomas Guyot-Sionnest
   * Add hint to NEWS.Debian, that check_linux_raid.pl and check_bgpstate will
     be removed in the next future
+  * Add 42_check_linux_raid_fix_r10.dpatch, which fixes RAID Levels with more
+    than one digit, thanks to Matija Nalis (Closes: #534604)
 
  -- Jan Wagner <waja at cyconet.org>  Sat, 05 Dec 2009 02:46:35 +0100
 

Modified: nagios-plugins/trunk/debian/patches/00list
===================================================================
--- nagios-plugins/trunk/debian/patches/00list	2009-12-07 13:50:58 UTC (rev 1806)
+++ nagios-plugins/trunk/debian/patches/00list	2009-12-08 18:51:11 UTC (rev 1807)
@@ -16,3 +16,4 @@
 39_check_ircd_fix_epn.dpatch
 40_check_http_proxy_auth.dpatch
 41_check_ping_detect_args.dpatch
+42_check_linux_raid_fix_r10.dpatch

Added: nagios-plugins/trunk/debian/patches/42_check_linux_raid_fix_r10.dpatch
===================================================================
--- nagios-plugins/trunk/debian/patches/42_check_linux_raid_fix_r10.dpatch	                        (rev 0)
+++ nagios-plugins/trunk/debian/patches/42_check_linux_raid_fix_r10.dpatch	2009-12-08 18:51:11 UTC (rev 1807)
@@ -0,0 +1,18 @@
+#! /bin/sh /usr/share/dpatch/dpatch-run
+## 42_check_linux_raid_fix_r10.dpatch by Matija Nalis <mnalis-debianbug at voyager.hr> 
+##
+## DP: Make Raid10+ working
+
+ at DPATCH@
+diff -urNad nagios-plugins-1.4.14~/contrib/check_linux_raid.pl nagios-plugins-1.4.14/contrib/check_linux_raid.pl
+--- nagios-plugins-1.4.14~/contrib/check_linux_raid.pl	2009-12-08 19:46:00.000000000 +0100
++++ nagios-plugins-1.4.14/contrib/check_linux_raid.pl	2009-12-08 19:46:31.000000000 +0100
+@@ -44,7 +44,7 @@
+ 
+ my $nextdev;
+ if(defined $ARGV[0]) { $nextdev = shift; }
+-else { $nextdev = "md[0-9]"; }
++else { $nextdev = "md[0-9]+"; }
+ 
+ my $code = "UNKNOWN";
+ my $msg = "";


Property changes on: nagios-plugins/trunk/debian/patches/42_check_linux_raid_fix_r10.dpatch
___________________________________________________________________
Added: svn:executable
   + *




More information about the Pkg-nagios-changes mailing list