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

Sjoerd Simons sjoerd at costa.debian.org
Sun Oct 16 20:47:16 UTC 2005


Author: sjoerd
Date: 2005-10-16 20:47:15 +0000 (Sun, 16 Oct 2005)
New Revision: 334

Modified:
   packages/unstable/hal/debian/hal.postinst
Log:
Fix postinst syntax error

Modified: packages/unstable/hal/debian/hal.postinst
===================================================================
--- packages/unstable/hal/debian/hal.postinst	2005-10-16 20:16:53 UTC (rev 333)
+++ packages/unstable/hal/debian/hal.postinst	2005-10-16 20:47:15 UTC (rev 334)
@@ -23,7 +23,7 @@
 #     installation fails and the `postinst' is called with `abort-upgrade',
 #     `abort-remove' or `abort-deconfigure'.
 
-UDEVSEND="env -i /sbin/udevsend"
+UDEVSEND="/sbin/udevsend"
 
 do_udev() {
   # Synthesize events on block devices, so we know the permissions are setup
@@ -31,7 +31,7 @@
   SYSFS="/sys"
   for i in /sys/block/* ; do
     # for each device
-    ACTION=add DEVPATH=${i#${SYSFS}} ${UDEVSEND} block &
+    ACTION=add DEVPATH=${i#${SYSFS}} env -i ${UDEVSEND} block &
 
     for j in $i/* ; do
       if [ -f $j/dev ]; then




More information about the Pkg-utopia-commits mailing list