summaryrefslogtreecommitdiff
path: root/packaging/pkgsrc/net/radsecproxy/files/radsecproxy.sh
blob: 2639b332a965bd0be5b98585c627675789ddf63b (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
25
26
#! /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=""

restart_precmd="${command} -p ${command_args}"

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