diff options
author | Andrey A. Chernov <ache@FreeBSD.org> | 2000-07-18 03:42:14 +0000 |
---|---|---|
committer | Andrey A. Chernov <ache@FreeBSD.org> | 2000-07-18 03:42:14 +0000 |
commit | 58b7b9d5c085dacc3e3381c8948acd69c6139b9d (patch) | |
tree | e113725742a86b78754387fa4de22b88dc22e74e /security/cfs | |
parent | ad3c55ffddb1d80708e5024a0699765d902db2be (diff) | |
download | ports-58b7b9d5c085dacc3e3381c8948acd69c6139b9d.tar.gz ports-58b7b9d5c085dacc3e3381c8948acd69c6139b9d.zip |
Use 'killall cfsd' on stop
Notes
Notes:
svn path=/head/; revision=30765
Diffstat (limited to 'security/cfs')
-rw-r--r-- | security/cfs/files/cfsd.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/security/cfs/files/cfsd.sh b/security/cfs/files/cfsd.sh index 488962b97f43..f90fe91a3755 100644 --- a/security/cfs/files/cfsd.sh +++ b/security/cfs/files/cfsd.sh @@ -10,6 +10,7 @@ start) [ -x ${PREFIX}/sbin/cfsd ] && ${PREFIX}/sbin/cfsd > /dev/null 2>&1 && echo -n ' cfsd' ;; stop) + killall cfsd && echo -n ' cfsd' ;; *) echo "Usage: `basename $0` {start|stop}" >&2 |