packages/net/restund/files/restund.init

19 lines
230 B
Plaintext
Raw Normal View History

#!/bin/sh /etc/rc.common
#
# Copyright (C) 2010 Alfred E. Heggestad
#
START=60
BIN=restund
DEFAULT=/etc/default/$BIN
OPTIONS=
start() {
[ -f $DEFAULT ] && . $DEFAULT
$BIN $OPTIONS
}
stop() {
killall $BIN
}