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