You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
324 B
17 lines
324 B
24 years ago
|
#!@l_prefix@/lib/openpkg/bash @l_prefix@/etc/rc
|
||
|
##
|
||
|
## rc.radius -- Run-Commands for RADIUS Daemon
|
||
|
##
|
||
|
|
||
|
%config
|
||
|
radius_enable="yes"
|
||
|
|
||
|
%start -p 200 -u root
|
||
|
opServiceEnabled radius || exit 0
|
||
|
@l_prefix@/sbin/radctl start
|
||
|
|
||
|
%stop -p 200 -u root
|
||
|
opServiceEnabled radius || exit 0
|
||
|
@l_prefix@/sbin/radctl stop
|
||
|
|