add packages_10.03.2 in preparation for the 10.03.2 interim release
[10.03/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 }