/etc/init.d/live-config is in live-config-sysvinit 4.0.4-1.
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 components that configure a live system during
## the boot process (late userspace).
##
## This is the sysvinit initscript for live-config.
### BEGIN INIT INFO
# Provides: live-config
# Required-Start:
# Required-Stop:
# Should-Start:
# Should-Stop:
# Default-Start: S
# Default-Stop:
# Short-Description: live-config - System Configuration Components
# Description: live-config contains the components that configure a
# live system during the boot process (late userspace).
# X-Start-Before: mountkernfs
# X-Stop-After:
# X-Interactive: true
### END INIT INFO
case "${1}" in
start)
if [ -e /bin/live-config ]
then
/bin/live-config ${@}
fi
;;
force-reload|restart|stop)
;;
esac
|