summaryrefslogtreecommitdiff
path: root/sys-freebsd/freebsd-usbin/files/rpc.lockd.initd
blob: 0c74b9fed61265abfbb6be54a5170733700ff98d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/sbin/runscript
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

depend() {
        need net rpcbind rpc.statd
}

start() {
        ebegin "Starting NFS lockd"
        start-stop-daemon --start --quiet --exec \
                /usr/sbin/rpc.lockd -- $rpclockdopts
        eend $? "Error starting NFS lockd"
}

stop() {
        ebegin "Stopping NFS lockd"
        start-stop-daemon --stop --quiet --exec /usr/sbin/rpc.lockd
        eend $? "Error stopping NFS lockd"
}