26 lines
499 B
Bash
26 lines
499 B
Bash
#!@RCD_SCRIPTS_SHELL@
|
|
#
|
|
# $NetBSD: mountd.sh,v 1.1 2003/12/30 03:27:50 jeremy-c-reed Exp $
|
|
#
|
|
|
|
# PROVIDE: mountd
|
|
# REQUIRE: NETWORKING mountall beforemountlkm portmap quota
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="mountd"
|
|
rcvar=$name
|
|
command="@PREFIX@/sbin/rpc.${name}"
|
|
required_files="@PKG_SYSCONFDIR@/exports"
|
|
start_precmd="mountd_precmd"
|
|
extra_commands="reload"
|
|
|
|
mountd_precmd()
|
|
{
|
|
rm -f /var/lib/nfs/etab
|
|
( umask 022 ; > /var/lib/nfs/etab )
|
|
@PREFIX@/sbin/exportfs -a
|
|
}
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|