[Pkg-utopia-commits] r462 - packages/unstable/hal/debian

Sjoerd Simons sjoerd at costa.debian.org
Wed Jan 11 23:39:56 UTC 2006


Author: sjoerd
Date: 2006-01-11 23:39:55 +0000 (Wed, 11 Jan 2006)
New Revision: 462

Modified:
   packages/unstable/hal/debian/changelog
   packages/unstable/hal/debian/hal.postinst
Log:
Fix a bashism in the postinst script

Modified: packages/unstable/hal/debian/changelog
===================================================================
--- packages/unstable/hal/debian/changelog	2006-01-11 23:26:04 UTC (rev 461)
+++ packages/unstable/hal/debian/changelog	2006-01-11 23:39:55 UTC (rev 462)
@@ -1,8 +1,9 @@
 hal (0.5.5.1-5) unstable; urgency=low
 
-  * Thighten depend on dbus and python2.4-dbus a little bit more 
+  * Thighten depend on dbus and python2.4-dbus a little bit more
+  * Fix a bashim in the postinst script (Closes: 347326) 
 
- -- Sjoerd Simons <sjoerd at debian.org>  Wed, 11 Jan 2006 20:25:58 +0100
+ -- Sjoerd Simons <sjoerd at debian.org>  Thu, 12 Jan 2006 00:38:47 +0100
 
 hal (0.5.5.1-4) unstable; urgency=low
 

Modified: packages/unstable/hal/debian/hal.postinst
===================================================================
--- packages/unstable/hal/debian/hal.postinst	2006-01-11 23:26:04 UTC (rev 461)
+++ packages/unstable/hal/debian/hal.postinst	2006-01-11 23:39:55 UTC (rev 462)
@@ -41,7 +41,7 @@
     fi
  
     # only start hal if it is not already running
-    if [ ! -e /var/run/hal/hald.pid ] || ! ps --no-headers -p $(< /var/run/hal/hald.pid) > /dev/null ; then
+    if [ ! -e /var/run/hal/hald.pid ] || ! ps --no-headers -p $(cat /var/run/hal/hald.pid) > /dev/null ; then
         if [ -x /etc/init.d/dbus ]; then
             invoke-rc.d dbus reload || true
             /etc/dbus-1/event.d/20hal start || true




More information about the Pkg-utopia-commits mailing list