diff options
author | ache <ache@FreeBSD.org> | 2000-07-18 11:42:14 +0800 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 2000-07-18 11:42:14 +0800 |
commit | 2211647209034179a7581e8f8e74ff7e48e45b74 (patch) | |
tree | f55e71e90be9b6ce95a9431b4a20141afeddc833 /security/cfs | |
parent | c2261bf1ecfaa93a0695345e5477de6a64294ef1 (diff) | |
download | freebsd-ports-gnome-2211647209034179a7581e8f8e74ff7e48e45b74.tar.gz freebsd-ports-gnome-2211647209034179a7581e8f8e74ff7e48e45b74.tar.zst freebsd-ports-gnome-2211647209034179a7581e8f8e74ff7e48e45b74.zip |
Use 'killall cfsd' on stop
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 |