summaryrefslogtreecommitdiff
path: root/devel/tcllib/files/tclhttpd.sh
diff options
context:
space:
mode:
authorMikhail Teterin <mi@FreeBSD.org>2002-01-28 20:13:39 +0000
committerMikhail Teterin <mi@FreeBSD.org>2002-01-28 20:13:39 +0000
commitad1bc7ee873f849d1d9bbb95803e3d130035f899 (patch)
tree4d8239b518ce2e77dbe0f1dd0f7f9c429a75adee /devel/tcllib/files/tclhttpd.sh
parentTweak the startup script so that it is *really* a FreeBSD startup (diff)
Upgrade from 0.8 to 1.2. Use the included tests once at build time
instead of installing them. Use the included installation routine (which does not install documentation other than the man-pages). Update the WWW -- the project moved to SourceForge.
Diffstat (limited to 'devel/tcllib/files/tclhttpd.sh')
-rw-r--r--devel/tcllib/files/tclhttpd.sh16
1 files changed, 0 insertions, 16 deletions
diff --git a/devel/tcllib/files/tclhttpd.sh b/devel/tcllib/files/tclhttpd.sh
deleted file mode 100644
index 6053456fe639..000000000000
--- a/devel/tcllib/files/tclhttpd.sh
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/bin/sh
-case $1 in
-stop)
- if ! [ -f /var/run/tclhttd.pid ] ; then
- echo tclhttd does not seem to be running
- exit 1
- fi
- echo "Not sure if `cat /var/run/tclhttd.pid` \
- (from /var/run/tclhttd.pid) is what you wish killed."
- exit 2
- ;;
-start|"")
- COMMAND_LINE &
- test -n "$!" && echo $! > /var/run/tclhttd.pid
- ;;
-esac