/etc/init.d/live-config is in live-config-sysvinit 3.0~a22-1ubuntu1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | #!/bin/sh
## live-config contains the scripts that configure a Debian Live system during
## the boot process (late userspace).
##
## This is the sysvinit script for live-config.
### BEGIN INIT INFO
# Provides: live-config
# Required-Start:
# Required-Stop:
# Should-Start:
# Should-Stop:
# Default-Start: S
# Default-Stop:
# Short-Description: Debian Live - System Configuration Scripts
# Description: live-config contains the scripts that configure a Debian
# Live system during the boot process (late userspace).
# X-Start-Before:
# X-Stop-After:
# X-Interactive: true
### END INIT INFO
case "${1}" in
start)
if [ -e /lib/live/config.sh ]
then
/lib/live/config.sh
fi
;;
force-reload|restart|stop)
;;
esac
|