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

depend() {
	need clock hostname logger
}

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

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