37cc341dbd
git-svn-id: svn://svn.openwrt.org/openwrt/packages@24640 3c298f89-4303-0410-b956-a3cf2f4a3e73
19 lines
230 B
Bash
19 lines
230 B
Bash
#!/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
|
|
}
|