#!/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
}