summaryrefslogtreecommitdiffstats
path: root/etc/rc.d/mountd
blob: eb8806b5f35e6ef3fe6a48f8720e08a0e2f1c795 (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
47
48
49
50
51
#!/bin/sh
#
# $NetBSD: mountd,v 1.11 2002/01/31 01:26:06 lukem Exp $
# $FreeBSD$
#

# PROVIDE: mountd
# REQUIRE: NETWORKING mountall beforemountlkm nfsserver rpcbind quota
# KEYWORD: FreeBSD NetBSD

. /etc/rc.subr

name="mountd"
rcvar=`set_rcvar`
command="/usr/sbin/${name}"
required_files="/etc/exports"
start_precmd="mountd_precmd"
extra_commands="reload"

mountd_precmd()
{
	case ${OSTYPE} in
	FreeBSD)
		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
		#
		case ${nfs_server_enable} in
		[Yy][Ee][Ss])
			if checkyesno weak_mountd_authentication; then
				mountd_flags="${mountd_flags} -n"
			fi
			;;
		*)
			if checkyesno mountd_enable; then
				checkyesno weak_mountd_authentication && mountd_flags="-n"
			fi
		esac
		;;
	esac
	rm -f /var/db/mountdtab
	( umask 022 ; > /var/db/mountdtab )
	return 0
}

load_rc_config $name
run_rc_command "$1"
OpenPOWER on IntegriCloud