summaryrefslogtreecommitdiff
path: root/net/udpxy/files/udpxy.in
blob: 7d309d2f3a37b6906348c4c5751570160a2eb95f (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
#!/bin/sh

# PROVIDE: udpxy
# REQUIRE: DAEMON

# Define these udpxy_* variables in one of these files:
#	/etc/rc.conf
#	/etc/rc.conf.local
#	/etc/rc.conf.d/udpxy
#
# udpxy_enable (bool):	Set to "NO" by default.
#			Set it to "YES" to enable udpxy.
# udpxy_port (number):	Set to "4022" by default.
#			Set listening port number.
# udpxy_flags (str):    Set to "-S" by default.
#                       Extra flags passed to start command.

. /etc/rc.subr

name="udpxy"
rcvar=udpxy_enable

load_rc_config ${name}

udpxy_enable=${udpxy_enable-"NO"}
udpxy_port=${udpxy_port-"4022"}
udpxy_flags=${udpxy_flags-"-S"}

command="%%PREFIX%%/sbin/${name}"
pidfile="/var/run/${name}${udpxy_port}.pid"
udpxy_flags="-p ${udpxy_port} ${udpxy_flags}"

run_rc_command "$1"