[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Freeze exception for sysvinit version 2.86.ds1-56?



Please consider allowing the current sysvinit package in unstable into
Lenny.  It contain a fix for the dash-as-sh release goal triggered
when using startpar concurrent style of booting, but was uploaded a
few days to late to make it into Lenny on its own.

This is the complete patch:

Index: debian/changelog
===================================================================
--- debian/changelog    (revision 1262)
+++ debian/changelog    (working copy)
@@ -1,3 +1,9 @@
+sysvinit (2.86.ds1-56) unstable; urgency=low
+
+  * Avoid bashism in init.d/rc (Closes: #473694).
+
+ -- Petter Reinholdtsen <pere@debian.org>  Sat, 12 Apr 2008 09:32:18 +0200
+
 sysvinit (2.86.ds1-55) unstable; urgency=low

   * Use $(MAKE) instead of make in debian/rules, to make it easier to
Index: debian/sysv-rc/etc/init.d/rc
===================================================================
--- debian/sysv-rc/etc/init.d/rc        (revision 1262)
+++ debian/sysv-rc/etc/init.d/rc        (working copy)
@@ -106,8 +106,8 @@
     test -s /etc/init.d/.depend.boot  || CONCURRENCY="none"
     test -s /etc/init.d/.depend.start || CONCURRENCY="none"
     test -s /etc/init.d/.depend.stop  || CONCURRENCY="none"
-    type -p startpar &> /dev/null     || CONCURRENCY="none"
-    startpar -v      &> /dev/null     || CONCURRENCY="none"
+    type startpar    > /dev/null 2>&1 || CONCURRENCY="none"
+    startpar -v      > /dev/null 2>&1 || CONCURRENCY="none"

     # startpar do not work properly at the start of rcS.d/.  Avoid it.
     # See #457896 for details.


Reply to: