summaryrefslogtreecommitdiffstats
path: root/system-config/backend/sysvinit/live-config.init
blob: 270de99c93f39f805bd3b3cf4f9b994d86897dd4 (plain)
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