Create /sys directory if it doesn't exist already.
[libguestfs.git] / appliance / init
1 #!/bin/sh
2
3 echo Starting /init script ...
4
5 PATH=/sbin:/usr/sbin:/bin:/usr/bin
6 export PATH
7
8 # Debian bug 606622.
9 RUNLEVEL=S
10 PREVLEVEL=N
11 export RUNLEVEL PREVLEVEL
12
13 mkdir -p /sysroot
14
15 rm -f /proc; mkdir /proc
16 mount -t proc /proc /proc
17 rm -f /sys; mkdir /sys
18 mount -t sysfs /sys /sys
19
20 if [ ! -L /etc/init.d/udev -a -x /etc/init.d/udev ]; then
21   if type service >/dev/null 2>&1; then
22      service udev start
23   else
24      /etc/init.d/udev start
25   fi
26 elif [ -x /sbin/start_udev ] && /sbin/start_udev; then
27   :
28 elif [ -x /sbin/udevd ]; then
29   echo -e '\000\000\000\000' > /proc/sys/kernel/hotplug
30   /sbin/udevd --daemon
31   /sbin/udevadm trigger
32   /sbin/udevadm settle
33 else
34   echo No udev, creating /dev manually
35   mount -t tmpfs none /dev
36   mkdir /dev/pts /dev/shm /dev/mapper
37   mount -t devpts -o gid=5,mode=620 /dev/pts /dev/pts
38   # Must do each MAKEDEV individually, because if one device fails,
39   # MAKEDEV will quit without creating the rest (RHBZ#507374).
40   for dev in mem null port zero core full ram tty console fd \
41     hda hdb hdc hdd sda sdb sdc sdd loop sd; do
42     MAKEDEV $dev ||:
43   done
44   mknod /dev/ptmx c 5 2;    chmod 0666 /dev/ptmx
45   mknod /dev/random c 1 8;  chmod 0666 /dev/random
46   mknod /dev/urandom c 1 9; chmod 0444 /dev/urandom
47   ln -sf /proc/self/fd/0 /dev/stdin
48   ln -sf /proc/self/fd/1 /dev/stdout
49   ln -sf /proc/self/fd/2 /dev/stderr
50
51   modprobe virtio_pci
52   modprobe virtio_net
53 fi
54
55 if grep -sq selinux=1 /proc/cmdline; then
56   mount -t selinuxfs none /selinux
57 fi
58
59 # Update the system clock.
60 hwclock -u -s
61
62 # Set up the network.
63 ifconfig lo 127.0.0.1
64 ifconfig eth0 169.254.2.10
65 route add default gw 169.254.2.2
66
67 # Scan for LVM.
68 modprobe dm_mod ||:
69
70 lvm vgscan --ignorelockingfailure
71 lvm vgchange -ay --ignorelockingfailure
72
73 # Improve virtio-blk performance (RHBZ#509383).
74 for f in /sys/block/vd*/queue/rotational; do echo 1 > $f; done
75
76 # http://kbase.redhat.com/faq/docs/DOC-5428
77 # Disabled this until https://bugzilla.redhat.com/show_bug.cgi?id=630583
78 # is fixed (broken in Linux 2.6.36).
79 #for f in /sys/block/[hsv]d*/queue/scheduler; do echo noop > $f; done
80
81 # These are useful when debugging.
82 if grep -sq guestfs_verbose=1 /proc/cmdline; then
83     ls -lR /dev
84     cat /proc/mounts
85     lvm pvs
86     lvm vgs
87     lvm lvs
88     ifconfig
89     netstat -rn
90     lsmod
91     #hwclock -r
92     date
93     #ping -n -v -c 5 10.0.2.2
94     #ping -n -v -c 5 10.0.2.4
95
96     echo -n "uptime: "; cat /proc/uptime
97 fi
98
99 if ! grep -sq guestfs_rescue=1 /proc/cmdline; then
100   # The host will kill qemu abruptly if guestfsd shuts down normally
101   guestfsd
102
103   # Otherwise we try to clean up gracefully. For example, this ensures that a
104   # core dump generated by the guest daemon will be written to disk.
105 else
106   # Use appliance in rescue mode, also used by the virt-rescue command.
107   eval $(grep -Eo 'TERM=[^[:space:]]+' /proc/cmdline)
108   PS1='><rescue> '
109   export TERM PS1
110   echo
111   echo "------------------------------------------------------------"
112   echo
113   echo "Welcome to virt-rescue, the libguestfs rescue shell."
114   echo
115   echo "Note: The contents of / are the rescue appliance."
116   echo "You have to mount the guest's partitions under /sysroot"
117   echo "before you can examine them."
118   echo
119   bash -i
120   echo
121   echo "virt-rescue: Syncing the disk now before exiting ..."
122   echo
123 fi
124
125 sync
126 /sbin/reboot -f