16 lines
221 B
Plaintext
16 lines
221 B
Plaintext
|
#!/bin/sh /etc/rc.common
|
||
|
# Copyright (C) 2006 OpenWrt.org
|
||
|
START=50
|
||
|
|
||
|
DEFAULT=/etc/default/radsecproxy
|
||
|
OPTIONS=""
|
||
|
|
||
|
start() {
|
||
|
[ -f $DEFAULT ] && . $DEFAULT
|
||
|
/usr/sbin/radsecproxy $OPTIONS
|
||
|
}
|
||
|
|
||
|
stop() {
|
||
|
killall radsecproxy
|
||
|
}
|