NetBSD/etc/rc.d/mountd

27 lines
433 B
Plaintext
Raw Normal View History

2000-03-10 14:53:23 +03:00
#!/bin/sh
#
# $NetBSD: mountd,v 1.6 2000/06/02 22:54:11 fvdl Exp $
2000-03-10 14:53:23 +03:00
#
# PROVIDE: mountd
# REQUIRE: mountall beforemountlkm network rpcbind quota
2000-03-10 14:53:23 +03:00
. /etc/rc.subr
name="mountd"
rcvar="nfs_server"
command="/usr/sbin/${name}"
required_files="/etc/exports"
start_precmd="mountd_precmd"
extra_commands="reload"
2000-03-10 14:53:23 +03:00
mountd_precmd()
{
rm -f /var/db/mountdtab
echo -n > /var/db/mountdtab
return 0
}
load_rc_config $name
run_rc_command "$1"