#!/sbin/runscript
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header:

depend() {
    need net $HTS_SERVICE
}

start() {
    ebegin "Starting httptunnel (server)"
    start-stop-daemon --start --quiet --exec /usr/bin/hts -c nobody -- -S -F $HTS_SERVICE_SERVER:$HTS_SERVICE_PORT $HTS_PORT
    eend $?
}

stop() {
    ebegin "Stopping httptunnel (server)"
    start-stop-daemon --stop --retry 5 --quiet --name hts
    eend $?
}