NetBSD/etc/rc.d/mountd

27 lines
428 B
Bash
Executable File

#!/bin/sh
#
# $NetBSD: mountd,v 1.4 2000/05/13 08:45:07 lukem Exp $
#
# PROVIDE: mountd
# REQUIRE: mountall beforemountlkm network portmap
. /etc/rc.subr
name="mountd"
rcvar="nfs_server"
command="/usr/sbin/${name}"
required_files="/etc/exports"
start_precmd="mountd_precmd"
extra_commands="reload"
mountd_precmd()
{
rm -f /var/db/mountdtab
echo -n > /var/db/mountdtab
return 0
}
load_rc_config $name
run_rc_command "$1"