summaryrefslogtreecommitdiff
path: root/etc/rc.d/mountd
blob: 4c6a190f1a5f54b53f453c3030d500ee0fc6af33 (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
#!/bin/sh
#
# $NetBSD: mountd,v 1.11 2002/01/31 01:26:06 lukem Exp $
#

# PROVIDE: mountd
# REQUIRE: NETWORKING mountall beforemountlkm rpcbind quota

. /etc/rc.subr

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

mountd_precmd()
{
	rm -f /var/db/mountdtab
	( umask 022 ; > /var/db/mountdtab )
	return 0
}

load_rc_config $name
run_rc_command "$1"