f3999160b56a0e4683ebca70e58e00b2bfec96cb
[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 mount -t proc /proc /proc
9 mount -t sysfs /sys /sys
10
11 if [ -x /etc/init.d/udev ]; then
12   if type service >/dev/null 2>&1; then
13      service udev start
14   else
15      /etc/init.d/udev start
16   fi
17 elif [ -x /sbin/start_udev ] && /sbin/start_udev; then
18   :
19 elif [ -x /sbin/udevd ]; then
20   echo -e '\000\000\000\000' > /proc/sys/kernel/hotplug
21   /sbin/udevd --daemon
22   /sbin/udevadm trigger
23   /sbin/udevadm settle --timeout=10
24 else
25   echo No udev, creating /dev manually
26   mount -t tmpfs none /dev
27   mkdir /dev/pts /dev/shm /dev/mapper
28   mount -t devpts -o gid=5,mode=620 /dev/pts /dev/pts
29   # Must do each MAKEDEV individually, because if one device fails,
30   # MAKEDEV will quit without creating the rest (RHBZ#507374).
31   for dev in mem null port zero core full ram tty console fd \
32     hda hdb hdc hdd sda sdb sdc sdd loop sd; do
33     MAKEDEV $dev ||:
34   done
35   mknod /dev/ptmx c 5 2;    chmod 0666 /dev/ptmx
36   mknod /dev/random c 1 8;  chmod 0666 /dev/random
37   mknod /dev/urandom c 1 9; chmod 0444 /dev/urandom
38   ln -sf /proc/self/fd/0 /dev/stdin
39   ln -sf /proc/self/fd/1 /dev/stdout
40   ln -sf /proc/self/fd/2 /dev/stderr
41
42   modprobe virtio_pci
43   modprobe virtio_net
44 fi
45
46 if grep -sq selinux=1 /proc/cmdline; then
47   mount -t selinuxfs none /selinux
48 fi
49
50 modprobe dm_mod ||:
51
52 ifconfig lo 127.0.0.1
53 ifconfig eth0 10.0.2.10
54 route add default gw 10.0.2.2
55
56 lvm vgscan --ignorelockingfailure
57 lvm vgchange -ay --ignorelockingfailure
58
59 # Improve virtio-blk performance (RHBZ#509383).
60 for f in /sys/block/vd*/queue/rotational; do echo 1 > $f; done
61
62 # Keep these to enhance the usefulness of debug output.
63 ls -l /dev
64 cat /proc/mounts
65 lvm pvs
66 lvm vgs
67 lvm lvs
68 ifconfig
69 netstat -rn
70 lsmod
71 #ping -n -v -c 5 10.0.2.2
72 #ping -n -v -c 5 10.0.2.4
73
74 echo -n "uptime: "; cat /proc/uptime
75
76 if ! grep -sq guestfs_rescue=1 /proc/cmdline; then
77   exec guestfsd -f
78 fi
79
80 # Use appliance in rescue mode, also used by the virt-rescue command.
81 eval $(grep -Eo 'TERM=[^[:space:]]+' /proc/cmdline)
82 PS1='><rescue> '
83 export TERM PS1
84 echo
85 echo "------------------------------------------------------------"
86 echo
87 echo "Welcome to virt-rescue, the libguestfs rescue shell."
88 echo
89 echo "Note: The contents of / are the rescue appliance."
90 echo "You have to mount the guest's partitions under /sysroot"
91 echo "before you can examine them."
92 echo
93 bash -i
94 echo
95 echo "virt-rescue: Syncing the disk now before exiting ..."
96 echo "(Don't worry if you see a 'Kernel panic' message below)"
97 echo
98 sync
99 sleep 1
100 sync