add packages_10.03.2 in preparation for the 10.03.2 interim release
[10.03/packages.git] / net / radsecproxy / files / radsecproxy.init
1 #!/bin/sh /etc/rc.common
2 # Copyright (C) 2006-2008 OpenWrt.org
3
4 START=50
5
6 DEFAULT=/etc/default/radsecproxy
7 OPTIONS=""
8
9 start() {
10         [ -f $DEFAULT ] && . $DEFAULT
11         /usr/sbin/radsecproxy $OPTIONS
12 }
13
14 stop() {
15         killall radsecproxy
16 }