mirror of
https://github.com/opnsense/src.git
synced 2026-03-16 15:48:26 -04:00
/etc/rc.d. They use the following new rc variables:
nfsv4_server_enable - set to "YES" to run the experimental server
nfsuserd_enable - set to "YES" to run nfsuserd for NFSv4 client and
server
nfsuserd_flags - command line flags for nfsuserd
nfscbd_enable - set to "YES" to run the experimental nfs client's
NFSv4 callback daemon
nfscbd_flags - command line flags for nfscbd
Reviewed by: dougb
Approved by: kib (mentor)
57 lines
1.1 KiB
Bash
Executable file
57 lines
1.1 KiB
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
# PROVIDE: mountd
|
|
# REQUIRE: NETWORKING nfsserver rpcbind quota
|
|
# KEYWORD: nojail shutdown
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="mountd"
|
|
rcvar=`set_rcvar`
|
|
command="/usr/sbin/${name}"
|
|
pidfile="/var/run/${name}.pid"
|
|
required_files="/etc/exports"
|
|
start_precmd="mountd_precmd"
|
|
extra_commands="reload"
|
|
|
|
mountd_precmd()
|
|
{
|
|
if ! checkyesno rpcbind_enable && \
|
|
! /etc/rc.d/rpcbind forcestatus 1>/dev/null 2>&1
|
|
then
|
|
force_depend rpcbind || return 1
|
|
fi
|
|
|
|
# mountd flags will differ depending on rc.conf settings
|
|
#
|
|
if checkyesno nfs_server_enable ; then
|
|
if checkyesno weak_mountd_authentication; then
|
|
rc_flags="${mountd_flags} -n"
|
|
fi
|
|
else
|
|
if checkyesno mountd_enable; then
|
|
checkyesno weak_mountd_authentication && rc_flags="-n"
|
|
fi
|
|
fi
|
|
|
|
# If nfsv4_server_enable is yes, force use of the experimental
|
|
# server
|
|
#
|
|
if checkyesno nfsv4_server_enable; then
|
|
rc_flags="-e ${rc_flags}"
|
|
fi
|
|
|
|
if checkyesno zfs_enable; then
|
|
rc_flags="${rc_flags} /etc/exports /etc/zfs/exports"
|
|
fi
|
|
|
|
rm -f /var/db/mountdtab
|
|
( umask 022 ; > /var/db/mountdtab )
|
|
return 0
|
|
}
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|