mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
c9a437c5c2
PR: 18263 Submitted by: Mikhail Teterin <mi@aldan.algebra.com>
17 lines
323 B
Bash
17 lines
323 B
Bash
#!/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
|