summaryrefslogtreecommitdiff
blob: 1a9a5f56d13f5ffd14342ddcc575be86e1182b12 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/sbin/runscript

depend() {
	before local
}

start() {
	ebegin "Starting spin daemon"
	start-stop-daemon --start --quiet --exec /usr/sbin/spind &
	eend $?
}

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