summaryrefslogtreecommitdiff
path: root/packaging/pkgsrc/net/radsecproxy/files/radsecproxy.sh
blob: 2cb59a0e8507b6d779889405a5023aa16fdf070c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/sh
#
# PROVIDE: radsecproxy
# REQUIRE: network
#

if [ -f /etc/rc.subr ]
then
	. /etc/rc.subr
fi

name="radsecproxy"
rcvar=${name}
command="/usr/pkg/sbin/${name}"
command_args="-c /usr/pkg/etc/${name}.conf"

if [ -f /etc/rc.subr ]
then
	load_rc_config $name
	run_rc_command "$1"
else
	echo -n ' ${name}'
	exec ${command} ${command_args}
fi