Menu

[r2016]: / trunk / etc / rc.d / nfslocking  Maximize  Restore  History

Download this file

44 lines (37 with data), 960 Bytes

#!/bin/sh
#
# $NetBSD: nfslocking,v 1.6 2002/03/24 15:52:41 lukem Exp $
# $FreeBSD: src/etc/rc.d/nfslocking,v 1.11 2004/10/07 13:55:26 mtm Exp $
#
# Modified by Volker Theile (votdev@gmx.de)
#

# PROVIDE: nfslocking
# REQUIRE: nfsd
# BEFORE: DAEMON
# KEYWORD: nojail
# XQUERY: -i "count(//nfs/enable) > 0" -o "0" -b
# RCVAR: rpc_statd rpc_lockd

. /etc/rc.subr

# Save the (one) commandline argument in case it gets clobbered.
arg=$1

# Either NFS client or server must be enabled or this must be a 'forcestart'
# for either of the daemons to start.
#
start_precmd='checkyesno nfs_server_enable || checkyesno nfs_client_enable ||
    [ -n "$rc_force" ]'
stop_precmd=$start_precmd
status_precmd=$start_precmd

# rpc.statd
#
name="statd"
rcvar=rpc_statd_enable
command="/usr/sbin/rpc.${name}"
load_rc_config $name
run_rc_command "$arg"

# rpc.lockd
#
name="lockd"
rcvar=rpc_lockd_enable
command="/usr/sbin/rpc.${name}"
load_rc_config $name
run_rc_command "$arg"
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.