summaryrefslogtreecommitdiff
blob: ec998d753a42da425c9bd48ce8124dff9cdb27af (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 -- -c /etc/wasabi/wasabi.conf
	eend $?
}

stop() {
	ebegin "Stopping wasabi"
	start-stop-daemon --stop --quiet --name wasabi
	eend $?
}