2007-10-22 13:45:58 +00:00
|
|
|
#!/bin/sh /etc/rc.common
|
2011-11-13 22:15:31 +00:00
|
|
|
# Copyright (C) 2006-2011 OpenWrt.org
|
2008-12-13 20:23:16 +00:00
|
|
|
|
2007-10-22 13:45:58 +00:00
|
|
|
START=50
|
|
|
|
|
|
|
|
start() {
|
2011-11-13 22:15:31 +00:00
|
|
|
service_start /usr/sbin/radsecproxy
|
2007-10-22 13:45:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
stop() {
|
2011-11-13 22:15:31 +00:00
|
|
|
service_stop /usr/sbin/radsecproxy
|
2007-10-22 13:45:58 +00:00
|
|
|
}
|