blob: d4879ff992de3b14026d07e23f63e26066d41800 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#!/bin/sh
#
# $FreeBSD$
#
# PROVIDE: radiusd
# REQUIRE: DAEMON
# KEYWORD: FreeBSD
#
# Add the following line to /etc/rc.conf to enable radiusd:
#
# radiusd_enable="YES"
#
radiusd_enable=${radiusd_enable-"NO"}
radiusd_flags=${radiusd_flags-"-o %%LOGFILE%%"}
. /etc/rc.subr
name=radiusd
rcvar=`set_rcvar`
command=%%PREFIX%%/sbin/${name}
load_rc_config ${name}
run_rc_command "$1"
|