[Pkg-sysvinit-commits] r1236 - in sysvinit/trunk/debian: . initscripts/etc/init.d

pere at alioth.debian.org pere at alioth.debian.org
Thu Jan 24 22:18:41 UTC 2008


Author: pere
Date: 2008-01-24 22:18:41 +0000 (Thu, 24 Jan 2008)
New Revision: 1236

Modified:
   sysvinit/trunk/debian/changelog
   sysvinit/trunk/debian/initscripts/etc/init.d/sendsigs
Log:
  * Fix typo in omitpid handling in init.d/sendsigs (Closes: #462354)

Modified: sysvinit/trunk/debian/changelog
===================================================================
--- sysvinit/trunk/debian/changelog	2008-01-23 13:05:27 UTC (rev 1235)
+++ sysvinit/trunk/debian/changelog	2008-01-24 22:18:41 UTC (rev 1236)
@@ -2,6 +2,7 @@
 
   * Correct file name in output when removing conffiles, to
     use the correct file ending .dpkg-old, not .dpkg-bak.
+  * Fix typo in omitpid handling in init.d/sendsigs (Closes: #462354)
 
  -- Petter Reinholdtsen <pere at debian.org>  Wed, 23 Jan 2008 14:04:18 +0100
 

Modified: sysvinit/trunk/debian/initscripts/etc/init.d/sendsigs
===================================================================
--- sysvinit/trunk/debian/initscripts/etc/init.d/sendsigs	2008-01-23 13:05:27 UTC (rev 1235)
+++ sysvinit/trunk/debian/initscripts/etc/init.d/sendsigs	2008-01-24 22:18:41 UTC (rev 1236)
@@ -21,7 +21,7 @@
 	# with Ubuntu.
 	for omitfile in /var/run/sendsigs.omit /lib/init/rw/sendsigs.omit; do
 		if [ -e $omitfile ]; then
-			for pid in $(cat omitfile); do
+			for pid in $(cat $omitfile); do
 				OMITPIDS="${OMITPIDS:+$OMITPIDS }-o $pid"
 			done
 		fi




More information about the Pkg-sysvinit-commits mailing list