85246b9f69f6532499cd997cd426475a94949d9a
[packages.git] / net / restund / files / restund.init
1 #!/bin/sh /etc/rc.common
2 #
3 # Copyright (C) 2010 Alfred E. Heggestad
4 #
5
6 START=60
7 BIN=restund
8 DEFAULT=/etc/default/$BIN
9 OPTIONS=
10
11 start() {
12        [ -f $DEFAULT ] && . $DEFAULT
13        $BIN $OPTIONS
14 }
15
16 stop() {
17        killall $BIN
18 }