Correcting left-over in author section of live.persist manpage.
[debian-live-boot.git] / debian / live-boot.init
blob373df1bc621e69ec65875780cc052e6396ae538b
1 #!/bin/sh
3 ## live-boot contains the scripts that configure a Debian Live system during
4 ## the boot process (early userspace).
5 ##
6 ## This is the sysvinit script for live-boot.
9 ### BEGIN INIT INFO
10 # Provides: live-boot
11 # Required-Start: $syslog bootmisc
12 # Required-Stop:
13 # Should-Start: $local_fs
14 # Should-Stop: halt reboot
15 # Default-Start: S
16 # Default-Stop: 0 6
17 # Short-Description: Debian Live - System Configuration Scripts
18 # Description: live-boot contains the scripts that configure a Debian
19 # Live system during the boot process (early userspace).
20 # X-Start-Before:
21 # X-Stop-After: umountroot
22 # X-Interactive: true
23 ### END INIT INFO
25 case "${1}" in
26 stop)
27 if [ -e /lib/live/boot.sh ]
28 then
29 /lib/live/boot.sh
33 start|force-reload|restart)
36 esac