[Pkg-utopia-commits] r3196 - in /packages/experimental/hal/debian: changelog hal.init

mpitt at users.alioth.debian.org mpitt at users.alioth.debian.org
Wed Jul 29 07:30:02 UTC 2009


Author: mpitt
Date: Wed Jul 29 07:30:01 2009
New Revision: 3196

URL: http://svn.debian.org/wsvn/pkg-utopia/?sc=1&rev=3196
Log:
debian/hal.init: Check for /sys/devices, not /sys/kernel. The latter
doesn't exist in OpenVZ. (LP: #399629)

Modified:
    packages/experimental/hal/debian/changelog
    packages/experimental/hal/debian/hal.init

Modified: packages/experimental/hal/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-utopia/packages/experimental/hal/debian/changelog?rev=3196&op=diff
==============================================================================
--- packages/experimental/hal/debian/changelog (original)
+++ packages/experimental/hal/debian/changelog Wed Jul 29 07:30:01 2009
@@ -7,6 +7,8 @@
   * debian/control: Bump libblkid-dev build dep to >= 2.15  as done by
     upstream recently; 1.43 was a synthetic version number before the
     util-linux release number was determined.
+  * debian/hal.init: Check for /sys/devices, not /sys/kernel. The latter
+    doesn't exist in OpenVZ. (LP: #399629)
 
  -- Michael Biebl <biebl at debian.org>  Wed, 29 Jul 2009 09:08:39 +0200
 

Modified: packages/experimental/hal/debian/hal.init
URL: http://svn.debian.org/wsvn/pkg-utopia/packages/experimental/hal/debian/hal.init?rev=3196&op=diff
==============================================================================
--- packages/experimental/hal/debian/hal.init (original)
+++ packages/experimental/hal/debian/hal.init Wed Jul 29 07:30:01 2009
@@ -56,7 +56,7 @@
 		exit 0
 	fi
 	
-	if [ ! -d /sys/kernel ] && [ `uname` = "Linux" ]; then
+	if [ ! -d /sys/devices ] && [ `uname` = "Linux" ]; then
 		log_failure_msg "Can't start $DESC - sysfs not mounted on /sys"
 		exit 0
 	fi




More information about the Pkg-utopia-commits mailing list