Fix snapshots' sync-strings usage (Closes: #591330).
[live-boot-grml.git] / debian / live-boot.init
1 #!/bin/sh
2
3 ### BEGIN INIT INFO
4 # Provides:             live-boot
5 # Required-Start:       $syslog bootmisc
6 # Required-Stop:
7 # Should-Start:         $local_fs
8 # Should-Stop:          halt reboot
9 # X-Stop-After:         umountroot
10 # Default-Start:        S
11 # Default-Stop:         0 6
12 # Short-Description:    live-boot init script
13 # Description:          Resyncs snapshots, evantually caches files in order to
14 #                       let remove the media.
15 ### END INIT INFO
16
17 # Authors: Tollef Fog Heen <tfheen@canonical.com>
18 #          Marco Amadori <marco.amadori@gmail.com>
19
20 PATH=/usr/sbin:/usr/bin:/sbin:/bin
21 NAME=live-boot
22 SCRIPTNAME=/etc/init.d/${NAME}
23 DO_SNAPSHOT=/sbin/live-snapshot
24 SNAPSHOT_CONF="/etc/live/boot.d/snapshot.conf"
25
26 # Exit if system was not booted by live-boot
27 grep -qs boot=live /proc/cmdline || exit 0
28
29 # Read snapshot configuration variables
30 [ -r ${SNAPSHOT_CONF} ] && . ${SNAPSHOT_CONF}
31
32 # Load the VERBOSE setting and other rcS variables
33 [ -f /etc/default/rcS ] && . /etc/default/rcS
34
35 # Define LSB log_* functions.
36 # Depend on lsb-base (>= 3.0-6) to ensure that this file is present.
37 . /lib/lsb/init-functions
38
39 # Try to cache everything we're likely to need after ejecting.  This
40 # is fragile and simple-minded, but our options are limited.
41 cache_path()
42 {
43         path="${1}"
44
45         if [ -d "${path}" ]
46         then
47                 find "${path}" -type f | xargs cat > /dev/null 2>&1
48         elif [ -f "${path}" ]
49         then
50                 if [ -x "${path}" ]
51                 then
52                         if file "${path}" | grep -q 'dynamically linked'
53                         then
54                                 for lib in $(ldd "${path}" | awk '{ print $3 }')
55                                 do
56                                         cache_path "${lib}"
57                                 done
58                         fi
59                 fi
60
61                 cat "${path}" >/dev/null 2>&1
62         fi
63 }
64
65 get_boot_device()
66 {
67         # search in /proc/mounts for the device that is mounted at /live/image
68         while read DEVICE MOUNT REST
69         do
70                 if [ "${MOUNT}" = "/live/image" ]
71                 then
72                         echo "${DEVICE}"
73                         exit 0
74                 fi
75         done < /proc/mounts
76 }
77
78 device_is_USB_flash_drive()
79 {
80         # remove leading "/dev/" and all trailing numbers from input
81         DEVICE=$(expr substr ${1} 6 3)
82
83         # check that device starts with "sd"
84         [ "$(expr substr ${DEVICE} 1 2)" != "sd" ] && return 1
85
86         # check that the device is an USB device
87         if readlink /sys/block/${DEVICE} | grep -q usb ||
88            readlink /sys/block/${DEVICE}/device | grep -q usb # linux < 2.6.29
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         # Don't prompt to eject the SD card on Babbage board, where we reuse it
118         # as a quasi-boot-floppy. Technically this uses a bit of ubiquity
119         # (archdetect), but since this is mostly only relevant for
120         # installations, who cares ...
121         if type archdetect >/dev/null 2>&1
122         then
123                 subarch="$(archdetect)"
124
125                 case $subarch in
126                         arm*/imx51)
127                                 return 0
128                                 ;;
129                 esac
130         fi
131
132         prompt=1
133         if grep -qs noprompt /proc/cmdline
134         then
135                 prompt=
136         fi
137
138         for path in $(which halt) $(which reboot) /etc/rc?.d /etc/default $(which stty) /bin/plymouth
139         do
140                 cache_path "${path}"
141         done
142
143         for x in $(cat /proc/cmdline)
144         do
145                 case ${x} in
146                         quickreboot)
147                                 QUICKREBOOT="Yes"
148                                 ;;
149                 esac
150         done
151
152         if [ -z ${QUICKREBOOT} ]
153         then
154
155                 # Exit if the system was booted from an ISO image rather than a physical CD
156                 grep -qs find_iso= /proc/cmdline && return 0
157                 # TODO: i18n
158                 BOOT_DEVICE="$(get_boot_device)"
159
160                 if device_is_USB_flash_drive ${BOOT_DEVICE}
161                 then
162                         # do NOT eject USB flash drives!
163                         # otherwise rebooting with most USB flash drives
164                         # failes because they actually remember the
165                         # "ejected" state even after reboot
166                         MESSAGE="Please remove the USB flash drive"
167                 else
168                         # ejecting is a very good idea here
169                         MESSAGE="Please remove the disc, close the the tray (if any)"
170
171                         if [ -x /usr/bin/eject ]
172                         then
173                                 eject -p -m /live/image >/dev/null 2>&1
174                         fi
175
176                 fi
177
178                 [ "$prompt" ] || return 0
179
180                 if [ -x /bin/plymouth ] && plymouth --ping
181                 then
182                         plymouth message --text="${MESSAGE} and press ENTER to continue:"
183                         plymouth watch-keystroke > /dev/null
184                 else
185                         stty sane < /dev/console
186
187                         printf "\n\n${MESSAGE} and press ENTER to continue:" > /dev/console
188
189                         read x < /dev/console
190                 fi
191         fi
192 }
193
194 case "${1}" in
195         restart|reload|force-reload|status)
196                 [ "${VERBOSE}" != no ] && log_end_msg 0
197                 ;;
198         start)
199                 log_begin_msg "${NAME} is configuring sendsigs..."
200                 if [ -f /live/root.pid ] ; then
201                         cat /live/root.pid >> /var/run/sendsigs.omit
202                 fi
203                 log_end_msg 0
204                 ;;
205
206         stop)
207                 log_begin_msg "${NAME} is resyncing snapshots and caching reboot files..."
208                 do_stop
209
210                 case "${?}" in
211                         0|1)
212                                 [ "${VERBOSE}" != no ] && log_end_msg 0
213                                 ;;
214
215                         2)
216                                 [ "${VERBOSE}" != no ] && log_end_msg 1
217                                 ;;
218                 esac
219
220                 mount -o remount,ro /live/cow
221                 ;;
222
223         *)
224                 log_success_msg "Usage: ${SCRIPTNAME} {start|stop|restart|force-reload}" >&2
225                 exit 3
226                 ;;
227 esac