blob: 6d46748765e7bb342b66ed2160423ef5f2e796d9 (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
#!/bin/sh
# PROVIDE: radsecproxy
# REQUIRE: LOGIN
# KEYWORD: shutdown
# Add the following line to /etc/rc.conf.local or /etc/rc.conf
# to enable this service:
#
# radsecproxy_enable (bool): Set to NO by default.
# Set it to YES to enable radsecproxy.
. /etc/rc.subr
name="radsecproxy"
rcvar=radsecproxy_enable
: ${radsecproxy_enable:="NO"}
: ${radsecproxy_user:="nobody"}
: ${radsecproxy_group:="nobody"}
: ${radsecproxy_pidfile:="/var/run/radsecproxy/radsecproxy.pid"}
user=${radsecproxy_user}
group=${radsecproxy_group}
pidfile=${radsecproxy_pidfile}
required_files=%%PREFIX%%/etc/radsecproxy.conf
command="%%PREFIX%%/sbin/${name}"
command_args="-c %%PREFIX%%/etc/radsecproxy.conf -i ${pidfile}"
start_precmd="radsecproxy_prestart"
stop_postcmd="radsecproxy_poststop"
radsecproxy_prestart()
{
mkdir -p $(dirname $pidfile)
chown ${user}:${group} $(dirname $pidfile)
}
radsecproxy_poststop()
{
rm -f ${pidfile}
}
load_rc_config $name
run_rc_command "$1"
|