blob: 00959c3a72f2645b93d9a921cb0292f290eef167 (
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
#!/bin/sh
# $FreeBSD$
#
# PROVIDE: hts
# REQUIRE: LOGIN
#
# Add the following lines to /etc/rc.conf.local or /etc/rc.conf
# to enable this service:
#
# hts_enable (bool): Set to NO by default.
# Set it to YES to enable httptunnel server.
# hts_port (string): [host:]port to listen for htc connection.
# Set to 8888 by default.
# hts_forward (string): Talk to this socket.
# hts_device (string): *or* talk to this device.
# hts_flags (string): Additional flags for hts.
#
. /etc/rc.subr
name="hts"
rcvar=hts_enable
command=%%PREFIX%%/bin/${name}
start_precmd="hts_prestart"
hts_prestart()
{
if checkyesno hts_enable; then
if [ -z "$hts_device" -a -z "$hts_forward" ]; then
err 1 "Specify either hts_device or hts_forward"
fi
fi
return 0
}
load_rc_config $name
: ${hts_enable="NO"}
: ${hts_user="httptunnel"}
: ${hts_port="8888"}
[ -n "$hts_device" ] && command_args="-d $hts_device"
[ -n "$hts_forward" ] && command_args="-F $hts_forward"
command_args="$command_args $hts_port"
run_rc_command "$1"
|