summaryrefslogtreecommitdiffstats
path: root/net-misc/httptunnel/files/hts
diff options
context:
space:
mode:
Diffstat (limited to 'net-misc/httptunnel/files/hts')
-rwxr-xr-xnet-misc/httptunnel/files/hts20
1 files changed, 20 insertions, 0 deletions
diff --git a/net-misc/httptunnel/files/hts b/net-misc/httptunnel/files/hts
new file mode 100755
index 0000000..37b902b
--- /dev/null
+++ b/net-misc/httptunnel/files/hts
@@ -0,0 +1,20 @@
+#!/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 $?
+}