2. Install config files as .sample to not clobber on upgrade 3. Add kerberos support PR: ports/79945 Submitted by: maintainer Contributed by: Andrey V. Elsukov [1] Denis Shaposhnikov [2] George C. Kaplan [3]
28 lines
536 B
Bash
28 lines
536 B
Bash
#!/bin/sh
|
|
|
|
# PROVIDE radiusd
|
|
# REQUIRE: NETWORKING SERVERS
|
|
# BEFORE: DAEMON
|
|
# KEYWORD: FreeBSD shutdown
|
|
|
|
#
|
|
# Add the following lines to /etc/rc.conf to enable radiusd:
|
|
#
|
|
# radiusd_enable="YES"
|
|
#
|
|
|
|
. %%RC_SUBR%%
|
|
|
|
name=radiusd
|
|
rcvar=`set_rcvar`
|
|
|
|
command=%%PREFIX%%/sbin/radiusd
|
|
radiusd_config=${radiusd_config:-"%%PREFIX%%/etc/raddb/radiusd.conf"}
|
|
required_files=${radiusd_config}
|
|
pidfile=/var/run/radiusd/radiusd.pid
|
|
|
|
radiusd_enable=${radiusd_enable:-"NO"}
|
|
start_precmd="${radiusd_start_precmd}"
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|