summaryrefslogtreecommitdiffstats
path: root/testing/lxdm/lxdm.initd
blob: 274c4afe9b3db7fb39bd673365e96c72946bee20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/sbin/runscript

depends() {
	needs localmount
}

start() {
	ebegin "Starting lxdm"
	start-stop-daemon --start --quiet --exec /usr/bin/lxdm -- -d
	eend $?
}

stop() {
	ebegin "Stopping lxdm"
	start-stop-daemon --stop --quiet --exec /usr/bin/lxdm
	eend $?
}