freebsd-ports/www/httptunnel/files/httptunnel.sh
Brian Somers e697ee667e Upgrade to 3.2 (no functional changes)
Set $HTS and $HTC in etc/rc.d/httptunnel.sh
Allow HTCPROXYAUTH to specify a file name
2000-08-31 20:30:55 +00:00

62 lines
1.6 KiB
Bash

#!/bin/sh
#
# $FreeBSD$
HTS=%%PREFIX%%/bin/hts # The installed hts program
HTSPORT= # [host:]port to listen for htc connection
HTSFORWARD= # Talk to this socket
HTSDEVICE= # *or* talk to this device
HTC=%%PREFIX%%/bin/htc # The installed htc program
HTCPORT= # host:port where hts is running
HTCFORWARD= # Talk to this socket
HTCDEVICE= # *or* talk to this device
HTCPROXY= # host:port of proxy to talk to hts via
HTCPROXYAUTH= # user:password to pass to proxy
HTCPROXYBUFFER=1K # Buffer size for buffered proxies
HTCBROWSER='Mozilla/4.7 [en] (X11; I; Linux 2.2.12 i386)' # Pretend to be this
HTCARGS=-S # Any other arguments required
case $1 in
start)
if [ -n "$HTSPORT" -a -x $HTS ]; then
[ -n "$HTSFORWARD" ] && args="-F $HTSFORWARD"
[ -n "$HTSDEVICE" ] && args="-d $HTSDEVICE"
$HTS $args $HTSPORT && echo -n ' hts'
fi
if [ -n "$HTCPORT" -a -x $HTC ]; then
set --
[ -n "$HTCFORWARD" ] && set -- -F $HTCFORWARD
[ -n "$HTCDEVICE" ] && set -- -d $HTCDEVICE
[ -n "$HTCBROWSER" ] && set -- -U "$HTCBROWSER" "$@"
if [ -n "$HTCPROXY" ]; then
[ -n "$HTCPROXYBUFFER" ] &&
set -- -B $HTCPROXYBUFFER "$@"
if [ -n "$HTCPROXYAUTH" ]
then
if [ -f "$HTCPROXYAUTH" ]
then
set -- --proxy-authorization-file \
$HTCPROXYAUTH "$@"
else
set -- -A $HTCPROXYAUTH "$@"
fi
fi
set -- -P $HTCPROXY "$@"
fi
$HTC "$@" $HTCARGS $HTCPORT && echo -n ' htc'
fi
;;
stop)
killall htc && echo -n ' htc'
killall hts && echo -n ' hts'
;;
*)
echo "Usage: `basename $0` {start|stop}" >&2
exit 64
;;
esac
exit 0