summaryrefslogtreecommitdiffstats
path: root/etc/rc.d/nfsd
blob: 84bda25aaba9096b87ecd394807b156420413cfc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/bin/sh
#
# $FreeBSD$
#

# PROVIDE: nfsd
# REQUIRE: mountd hostname gssd
# KEYWORD: nojail shutdown

. /etc/rc.subr

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

load_rc_config $name
command_args="${nfs_server_flags}"
start_precmd="nfsd_precmd"
sig_stop="USR1"

nfsd_precmd()
{
	if ! sysctl vfs.nfsrv >/dev/null 2>&1; then
		force_depend nfsserver || return 1
	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

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

run_rc_command "$1"
OpenPOWER on IntegriCloud