ubuntu: Use direct udevd method to start udev on Ubuntu.
authorRichard Jones <rjones@redhat.com>
Thu, 20 May 2010 17:53:10 +0000 (18:53 +0100)
committerRichard Jones <rjones@redhat.com>
Thu, 20 May 2010 17:57:20 +0000 (18:57 +0100)
On Ubuntu, /etc/init.d/udev is a symlink to an upstart file,
but running that causes the appliance to hang.

Therefore detect if this is a symlink and fall through to the
direct start of udevd.  This shouldn't affect Debian because the
file is not a symlink on standard Debian.

appliance/init

index 9ecf007..c622788 100755 (executable)
@@ -10,7 +10,7 @@ mkdir -p /sysroot
 mount -t proc /proc /proc
 mount -t sysfs /sys /sys
 
-if [ -x /etc/init.d/udev ]; then
+if [ ! -L /etc/init.d/udev -a -x /etc/init.d/udev ]; then
   if type service >/dev/null 2>&1; then
      service udev start
   else