mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-16 10:20:30 +00:00
1e2cac7b7f
longer used by /etc/rc.d/nfsd and it is no longer necessary to load the old nfs server by default, when nfs_server_enable="YES". Tested by: sgk at troutmask.apl.washington.edu Reviewed by: rc (Andrzej Tobola)
44 lines
872 B
Bash
Executable File
44 lines
872 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# FreeBSD History: src/etc/rc.d/nfslocking,v 1.11 2004/10/07 13:55:26 mtm
|
|
# $FreeBSD$
|
|
#
|
|
|
|
# PROVIDE: lockd
|
|
# REQUIRE: nfsclient nfsd rpcbind statd
|
|
# BEFORE: DAEMON
|
|
# KEYWORD: nojail shutdown
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="lockd"
|
|
rcvar=rpc_lockd_enable
|
|
command="/usr/sbin/rpc.${name}"
|
|
start_precmd='lockd_precmd'
|
|
stop_precmd='checkyesno nfs_server_enable || checkyesno nfs_client_enable'
|
|
status_precmd=$stop_precmd
|
|
|
|
# Make sure that we are either an NFS client or server, and that we get
|
|
# the correct flags from rc.conf(5).
|
|
#
|
|
lockd_precmd()
|
|
{
|
|
local ret
|
|
ret=0
|
|
|
|
if ! checkyesno nfs_server_enable && ! checkyesno nfs_client_enable
|
|
then
|
|
ret=1
|
|
fi
|
|
if ! checkyesno rpcbind_enable && \
|
|
! /etc/rc.d/rpcbind forcestatus 1>/dev/null 2>&1
|
|
then
|
|
force_depend rpcbind || ret=1
|
|
fi
|
|
rc_flags=${rpc_lockd_flags}
|
|
return ${ret}
|
|
}
|
|
|
|
load_rc_config $name
|
|
run_rc_command $1
|