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