Menu

[r10367]: / legacy / etc / rc.d / nfsd  Maximize  Restore  History

Download this file

80 lines (65 with data), 1.9 kB

#!/bin/sh
#
# $FreeBSD: stable/9/etc/rc.d/nfsd 223847 2011-07-07 20:59:42Z rmacklem $
#

# PROVIDE: nfsd
# REQUIRE: mountd hostname gssd nfsuserd
# KEYWORD: nojail shutdown
# XQUERY: -i "count(//nfsd/enable) > 0" -o "0" -b
# RCVAR: nfs_server

. /etc/rc.subr
. /etc/configxml.subr

name="nfsd"
rcvar=`set_rcvar nfs_server`
command="/usr/sbin/${name}"

# Customize number of server processes/daemons
nfs_server_flags=`/usr/local/bin/xml sel -t -v "concat('-u -t -n ',//nfsd/numproc)" ${configxml_file} | /usr/local/bin/xml unesc`

load_rc_config $name
start_precmd="nfsd_precmd"
sig_stop="USR1"

nfsd_precmd()
{
	if checkyesno oldnfs_server_enable; then
		rc_flags="-o ${nfs_server_flags}"

		# Load the module now, so that the vfs.nfsrv sysctl
		# oids are available.
		load_kld nfsserver

		if checkyesno nfs_reserved_port_only; then
			echo 'NFS on reserved port only=YES'
			/sbin/sysctl vfs.nfsrv.nfs_privport=1 > /dev/null
		fi
	else
		rc_flags="${nfs_server_flags}"

		# Load the modules now, so that the vfs.nfsd sysctl
		# oids are available.
		load_kld nfsd

		if checkyesno nfs_reserved_port_only; then
			echo 'NFS on reserved port only=YES'
			/sbin/sysctl vfs.nfsd.nfs_privport=1 > /dev/null
		fi

		if checkyesno nfsv4_server_enable; then
			if ! checkyesno nfsuserd_enable  && \
			    ! /etc/rc.d/nfsuserd forcestatus 1>/dev/null 2>&1
			then
				if ! force_depend nfsuserd; then
					err 1 "Cannot run nfsuserd"
				fi
			fi
		else
			echo 'NFSv4 is disabled'
			/sbin/sysctl vfs.nfsd.server_max_nfsvers=3 > /dev/null
		fi
	fi

	if ! checkyesno rpcbind_enable  && \
	    ! /etc/rc.d/rpcbind forcestatus 1>/dev/null 2>&1
	then
		force_depend rpcbind || return 1
	fi

	if ! checkyesno mountd_enable  && \
	    ! /etc/rc.d/mountd forcestatus 1>/dev/null 2>&1
	then
		force_depend mountd || return 1
	fi
	return 0
}

run_rc_command "$1"
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.