File: live-config.init

package info (click to toggle)
open-infrastructure-system-config 20161101-lts1-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 748 kB
  • ctags: 115
  • sloc: sh: 2,160; makefile: 166
file content (36 lines) | stat: -rwxr-xr-x 742 bytes parent folder | download | duplicates (10)
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