353a96acb2203a92f3dce1a83be46b20aefbedb5
[openwrt/svn-archive/archive.git] / net / rarpd / files / rarpd.init
1 #!/bin/sh /etc/rc.common
2 # Copyright (C) 2006 OpenWrt.org
3
4 RARPD=/usr/sbin/rarpd
5 DEFAULT=/etc/default/rarpd
6 [ -f $DEFAULT ] && . $DEFAULT
7
8 start() {
9 $RARPD $OPTIONS
10 }
11 stop() {
12 killall rarpd
13 }