ubuntu: Use direct udevd method to start udev on Ubuntu.
[libguestfs.git] / appliance / init
index 15dab61..c622788 100755 (executable)
@@ -5,10 +5,12 @@ echo Starting /init script ...
 PATH=/sbin:/usr/sbin:/bin:/usr/bin
 export PATH
 
+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
@@ -52,8 +54,8 @@ hwclock -u -s
 
 # Set up the network.
 ifconfig lo 127.0.0.1
-ifconfig eth0 10.0.2.10
-route add default gw 10.0.2.2
+ifconfig eth0 169.254.2.10
+route add default gw 169.254.2.2
 
 # Scan for LVM.
 modprobe dm_mod ||: