b511f9d210
git-svn-id: svn://svn.openwrt.org/openwrt/packages@28757 3c298f89-4303-0410-b956-a3cf2f4a3e73
18 lines
242 B
Bash
18 lines
242 B
Bash
#!/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
|
|
}
|