NetBSD/etc/rc.d/mountd
lukem 919eb089e2 change mountd to use its own $mountd variable (instead of $nfs_server).
nfsd will complain if mountd isn't set.  from [misc/13135] by Johnny C. Lam.
2001-06-16 06:13:09 +00:00

27 lines
436 B
Bash
Executable File

#!/bin/sh
#
# $NetBSD: mountd,v 1.10 2001/06/16 06:13:10 lukem Exp $
#
# PROVIDE: mountd
# REQUIRE: NETWORK 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"