ccb2d02a33
in most cases, except one. The 'restart' case was not working as expected. Specifically, it would stop both lockd and statd, but it would restart only statd (which appears first in the script). This is because rc.subr(8) contains code to guard against infinite recursion in the 'restart' casae. To fix this use the traditional approach of controlling only one server from one script by breaking out rc.d/nfslocking into its contituent parts: rc.d/lockd and rc.d/statd. Keep rc.d/nfslocking around but don't include it in the boot rcorder(8)ing. PR: conf/107316 Approved by: re (bmah) MFC after: 2 weeks
39 lines
706 B
Bash
39 lines
706 B
Bash
#!/bin/sh
|
|
#
|
|
# $NetBSD: nfslocking,v 1.6 2002/03/24 15:52:41 lukem Exp $
|
|
# $FreeBSD$
|
|
#
|
|
|
|
# PROVIDE: nfslocking
|
|
# REQUIRE: nfsserver nfsclient nfsd rpcbind
|
|
# BEFORE: DAEMON
|
|
# KEYWORD: nojail
|
|
|
|
. /etc/rc.subr
|
|
|
|
# Save the (one) commandline argument in case it gets clobbered.
|
|
arg=$1
|
|
|
|
# Either NFS client or server must be enabled and rpcbind(8) must be started.
|
|
#
|
|
nfslocking_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
|