Restoring previous behaviour of ejecting the cd when being in non-persistent mode...
[live-boot-grml.git] / debian / live-initramfs.init
1 #!/bin/sh
2
3 ### BEGIN INIT INFO
4 # Provides:             live-initramfs
5 # Required-Start:       $syslog
6 # Required-Stop:        $syslog
7 # Should-Start:         $local_fs
8 # Should-Stop:          $local_fs
9 # Default-Start:        1 2 3 4 5
10 # Default-Stop:         0 6
11 # Short-Description:    live-initramfs init script
12 # Description:          Resyncs snapshots, evantually caches files in order to
13 #                       let remove the media.
14 ### END INIT INFO
15
16 # Authors: Tollef Fog Heen <tfheen@canonical.com>
17 #          Marco Amadori <marco.amadori@gmail.com>
18
19 PATH=/usr/sbin:/usr/bin:/sbin:/bin
20 NAME=live-initramfs
21 SCRIPTNAME=/etc/init.d/${NAME}
22 DO_SNAPSHOT=/sbin/live-snapshot
23
24 # Exit if system was not booted by live-initramfs
25 grep -qs boot=live /proc/cmdline || exit 0
26
27 # Exit if the system was booted from an ISO image rather than a physical CD
28 grep -qs find_iso= /proc/cmdline && exit 0
29
30 # Read configuration variable file if it is present
31 [ -r /etc/live.conf ] && . /etc/live.conf
32
33 # Load the VERBOSE setting and other rcS variables
34 [ -f /etc/default/rcS ] && . /etc/default/rcS
35
36 # Define LSB log_* functions.
37 # Depend on lsb-base (>= 3.0-6) to ensure that this file is present.
38 . /lib/lsb/init-functions
39
40 # Try to cache everything we're likely to need after ejecting.  This
41 # is fragile and simple-minded, but our options are limited.
42 cache_path()
43 {
44         path="${1}"
45
46         if [ -d "${path}" ]
47         then
48                 find "${path}" -type f | xargs cat > /dev/null 2>&1
49         elif [ -f "${path}" ]
50         then
51                 if [ -x "${path}" ]
52                 then
53                         if file "${path}" | grep -q 'dynamically linked'
54                         then
55                                 for lib in $(ldd "${path}" | awk '{ print $3 }')
56                                 do
57                                         cache_path "${lib}"
58                                 done
59                         fi
60                 fi
61
62                 cat "${path}" >/dev/null 2>&1
63         fi
64 }
65
66 get_boot_device()
67 {
68         # search in /proc/mounts for the device that is mounted at /live/image
69         while read DEVICE MOUNT REST
70         do
71                 if [ "${MOUNT}" = "/live/image" ]
72                 then
73                         echo "${DEVICE}"
74                         exit 0
75                 fi
76         done < /proc/mounts
77 }
78
79 device_is_USB_flash_drive()
80 {
81         # remove leading "/dev/" and all trailing numbers from input
82         DEVICE=$(expr substr ${1} 6 3)
83
84         # check that device starts with "sd"
85         [ "$(expr substr ${DEVICE} 1 2)" != "sd" ] && return 1
86
87         # check that the device is an USB device
88         if readlink /sys/block/${DEVICE}/device | grep -q usb
89         then
90                 return 0
91         fi
92
93         return 1
94 }
95
96 do_stop ()
97 {
98         if ! grep -qs nopersistent /proc/cmdline && grep -qs persistent /proc/cmdline
99         then
100                 if [ ! -z "${ROOTSNAP}" ]
101                 then
102                         ${DO_SNAPSHOT} --resync-string="${ROOTSNAP}"
103                 fi
104
105                 if [ ! -z "${HOMESNAP}" ]
106                 then
107                         ${DO_SNAPSHOT} --resync-string="${HOMESNAP}"
108                 fi
109         fi
110
111         # check for netboot
112         if [ ! -z "${NETBOOT}" ] || grep -qs netboot /proc/cmdline || grep -qsi root=/dev/nfs /proc/cmdline  || grep -qsi root=/dev/cifs /proc/cmdline
113         then
114                 return 0
115         fi
116
117         prompt=1
118         if grep -qs noprompt /proc/cmdline
119         then
120                 prompt=
121         fi
122
123         for path in $(which halt) $(which reboot) /etc/rc?.d /etc/default $(which stty)
124         do
125                 cache_path "${path}"
126         done
127
128         for x in $(cat /proc/cmdline)
129         do
130                 case ${x} in
131                         quickreboot)
132                                 QUICKREBOOT="Yes"
133                                 ;;
134                 esac
135         done
136
137         if [ -z ${QUICKREBOOT} ]
138         then
139                 # TODO: i18n
140                 BOOT_DEVICE="$(get_boot_device)"
141
142                 if device_is_USB_flash_drive ${BOOT_DEVICE}
143                 then
144                         # do NOT eject USB flash drives!
145                         # otherwise rebooting with most USB flash drives
146                         # failes because they actually remember the
147                         # "ejected" state even after reboot
148                         MESSAGE="Please remove the USB flash drive"
149                 else
150                         # ejecting is a very good idea here
151                         MESSAGE="Please remove the disc, close the the tray (if any)"
152
153                         if [ -x /usr/bin/eject ]
154                         then
155                                 eject -p -m /live/image >/dev/null 2>&1
156                         fi
157
158                         [ "$prompt" ] || return 0
159                 fi
160
161                 stty sane < /dev/console
162
163                 echo -n -e "\n\n${MESSAGE} and press ENTER to continue:" > /dev/console
164
165                 if [ -x /sbin/usplash_write ]
166                 then
167                         /sbin/usplash_write "TIMEOUT 86400"
168                         /sbin/usplash_write "TEXT-URGENT ${MESSAGE}"
169                         /sbin/usplash_write "TEXT-URGENT and press ENTER to continue"
170                 fi
171
172                 read x < /dev/console
173         fi
174 }
175
176 case "${1}" in
177         start|restart|reload|force-reload|status)
178                 [ "${VERBOSE}" != no ] && log_end_msg 0
179                 ;;
180
181         stop)
182                 log_begin_msg "${NAME} is resyncing snapshots and caching reboot files..."
183                 do_stop
184
185                 case "${?}" in
186                         0|1)
187                                 [ "${VERBOSE}" != no ] && log_end_msg 0
188                                 ;;
189
190                         2)
191                                 [ "${VERBOSE}" != no ] && log_end_msg 1
192                                 ;;
193                 esac
194                 ;;
195
196         *)
197                 log_success_msg "Usage: ${SCRIPTNAME} {start|stop|restart|force-reload}" >&2
198                 exit 3
199                 ;;
200 esac