aboutsummaryrefslogtreecommitdiff
path: root/net/dictd
diff options
context:
space:
mode:
authorClive Lin <clive@FreeBSD.org>2004-02-17 09:51:18 +0000
committerClive Lin <clive@FreeBSD.org>2004-02-17 09:51:18 +0000
commitc2e4f0f15f652dd0059f3e10b518a02be7b5fdad (patch)
tree335b0c807c12fcb1dab700a945af99e42715c2e2 /net/dictd
parent56fb4687d0d789d23812df3544e926bdd0a1a2f8 (diff)
downloadports-c2e4f0f15f652dd0059f3e10b518a02be7b5fdad.tar.gz
ports-c2e4f0f15f652dd0059f3e10b518a02be7b5fdad.zip
Notes
Diffstat (limited to 'net/dictd')
-rw-r--r--net/dictd/files/dictd.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/dictd/files/dictd.sh b/net/dictd/files/dictd.sh
index 6791440d512e..42097ca39cc3 100644
--- a/net/dictd/files/dictd.sh
+++ b/net/dictd/files/dictd.sh
@@ -19,7 +19,7 @@ DICTD_PID_FILE=/var/run/dictd.pid
case "$1" in
start)
if [ -x $DICTD ]; then
- ${ECHO} "dictd starting."
+ ${ECHO} -n " dictd"
$DICTD $DICTD_OPTIONS
${ECHO} `${SOCKSTAT} | ${GREP} dictd | ${AWK} '{print $3}'` > ${DICTD_PID_FILE}
else
@@ -33,7 +33,7 @@ case "$1" in
fi
dictdpid=`${CAT} $DICTD_PID_FILE`
if [ "$dictdpid" -gt 0 ]; then
- ${ECHO} "Stopping the dictd server."
+ ${ECHO} -n " dictd"
${KILL} -15 $dictdpid 2>&1 > /dev/null
fi
${RM} -f $DICTD_PID_FILE