#!/bin/sh /etc/rc.common # Copyright (C) 2006 OpenWrt.org START=50 BIN=frickin DEFAULT=/etc/default/$BIN [ -f $DEFAULT ] && . $DEFAULT start() { $BIN $OPTIONS & } stop() { killall $BIN }