summaryrefslogtreecommitdiff
path: root/devel/tcllib/files/tclhttpd.sh
diff options
context:
space:
mode:
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