801c438304
assignments to the literal values it would have returned. The concept of set_rcvar() was nice in theory, but the forks it creates are a drag on the startup process, which is especially noticeable on slower systems, such as embedded ones. During the discussion on freebsd-rc@ a preference was expressed for using ${name}_enable instead of the literal values. However the code portability concept doesn't really apply since there are so many other places where the literal name has to be searched for and replaced. Also, using the literal value is also a tiny bit faster than dereferencing the variables, and every little bit helps.
79 lines
1.6 KiB
Bash
Executable File
79 lines
1.6 KiB
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
# PROVIDE: nfsd
|
|
# REQUIRE: mountd hostname gssd nfsuserd
|
|
# KEYWORD: nojail shutdown
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="nfsd"
|
|
rcvar="nfs_server_enable"
|
|
command="/usr/sbin/${name}"
|
|
|
|
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'
|
|
sysctl vfs.nfsrv.nfs_privport=1 > /dev/null
|
|
else
|
|
sysctl vfs.nfsrv.nfs_privport=0 > /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'
|
|
sysctl vfs.nfsd.nfs_privport=1 > /dev/null
|
|
else
|
|
sysctl vfs.nfsd.nfs_privport=0 > /dev/null
|
|
fi
|
|
|
|
if checkyesno nfsv4_server_enable; then
|
|
sysctl vfs.nfsd.server_max_nfsvers=4 > /dev/null
|
|
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'
|
|
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"
|