r274 - in mdadm/trunk/debian: . initramfs

madduck at users.alioth.debian.org madduck at users.alioth.debian.org
Mon Nov 13 11:19:18 CET 2006


Author: madduck
Date: 2006-11-13 11:19:17 +0100 (Mon, 13 Nov 2006)
New Revision: 274

Modified:
   mdadm/trunk/debian/changelog
   mdadm/trunk/debian/initramfs/hook
Log:
* Prevent initramfs hook from exiting prematurely when VERBOSE=false.

Modified: mdadm/trunk/debian/changelog
===================================================================
--- mdadm/trunk/debian/changelog	2006-11-12 20:35:35 UTC (rev 273)
+++ mdadm/trunk/debian/changelog	2006-11-13 10:19:17 UTC (rev 274)
@@ -1,3 +1,9 @@
+mdadm (2.5.6-5) unstable; urgency=low
+
+  * Prevent initramfs hook from exiting prematurely when VERBOSE=false.
+
+ -- martin f. krafft <madduck at debian.org>  Mon, 13 Nov 2006 11:18:53 +0100
+
 mdadm (2.5.6-4) unstable; urgency=low
 
   * Actually remove mdadm.conf on purge; previously, the generation of

Modified: mdadm/trunk/debian/initramfs/hook
===================================================================
--- mdadm/trunk/debian/initramfs/hook	2006-11-12 20:35:35 UTC (rev 273)
+++ mdadm/trunk/debian/initramfs/hook	2006-11-13 10:19:17 UTC (rev 274)
@@ -39,7 +39,7 @@
 
 info()
 {
-  is_true ${VERBOSE:-false} && write I "$@"
+  is_true ${VERBOSE:-false} && write I "$@" || :
 }
 
 warn()




More information about the pkg-mdadm-commits mailing list