diff options
author | Sam Lawrance <lawrance@FreeBSD.org> | 2005-06-09 07:48:58 +0000 |
---|---|---|
committer | Sam Lawrance <lawrance@FreeBSD.org> | 2005-06-09 07:48:58 +0000 |
commit | 3f73062f41e63c86ab29e06ed0aed8f6603f267c (patch) | |
tree | 22840171eb7c0e6695f07e2d70b13ffd0744c971 /www/mnogosearch/files/spelld.sh-dist | |
parent | - Update to 4.0.6 (diff) |
(I missed the adds and removes on the first try)
- Update to 3.2.32 [1]
- I'll adopt this port for a while, at least until it's settled in.
PR: ports/80945 [1]
Submitted by: Radim Kolar <hsn@netmag.cz> [1]
Notes
Notes:
svn path=/head/; revision=137090
Diffstat (limited to 'www/mnogosearch/files/spelld.sh-dist')
-rw-r--r-- | www/mnogosearch/files/spelld.sh-dist | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/www/mnogosearch/files/spelld.sh-dist b/www/mnogosearch/files/spelld.sh-dist deleted file mode 100644 index 7b9612b68bb5..000000000000 --- a/www/mnogosearch/files/spelld.sh-dist +++ /dev/null @@ -1,28 +0,0 @@ -#!/bin/sh -# $FreeBSD$ - -if ! PREFIX=$(expr $0 : "\(/.*\)/etc/rc\.d/$(basename $0)\$"); then - echo "$0: Cannot determine the PREFIX" >&2 - exit 1 -fi - -case "$1" in -start) - if [ -x ${PREFIX}/sbin/spelld ]; then -# Uncomment to disallow access from outside -# /sbin/ipfw -q add 7001 deny tcp from any to any 7001 - rm -f /var/mnogosearch/spelld.pid - su -f -m www -c "exec ${PREFIX}/sbin/spelld &" > /dev/null 2>&1 && echo -n ' spelld' - fi - ;; -stop) - killall spelld && echo -n ' spelld' -# Uncomment to disallow access from outside -# /sbin/ipfw -q delete 7001 - ;; -*) - echo "Usage: `basename $0` {start|stop}" >&2 - ;; -esac - -exit 0 |