packages/net/restund/files/restund.init

18 lines
242 B
Plaintext
Raw Normal View History

#!/bin/sh /etc/rc.common
#
# Copyright (C) 2010-2011 OpenWrt.org
# Copyright (C) 2010 Alfred E. Heggestad
#
START=60
BIN=restund
OPTIONS=
start() {
start-stop-daemon -S -q -x $BIN -- $OPTIONS
}
stop() {
start-stop-daemon -K -q -x $BIN
}