#!/bin/sh /etc/rc.common # Copyright (C) 2006 OpenWrt.org RARPD=/usr/sbin/rarpd DEFAULT=/etc/default/rarpd start() { [ -f $DEFAULT ] && . $DEFAULT $RARPD $OPTIONS } stop() { killall rarpd }