mountd revision 1.3
1#!/bin/sh
2#
3# $NetBSD: mountd,v 1.3 2000/04/30 13:23:34 lukem Exp $
4#
5
6# PROVIDE: mountd
7# REQUIRE: mountall beforemountlkm network portmap
8
9. /etc/rc.subr
10. /etc/rc.conf
11
12name="mountd"
13rcvar="nfs_server"
14command="/usr/sbin/${name}"
15required_files="/etc/exports"
16start_precmd="mountd_precmd"
17extra_commands="reload"
18
19mountd_precmd()
20{
21	rm -f /var/db/mountdtab
22	echo -n > /var/db/mountdtab
23	return 0
24}
25
26run_rc_command "$1"
27