2000-03-10 14:53:23 +03:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2002-01-31 04:26:05 +03:00
|
|
|
# $NetBSD: mountd,v 1.11 2002/01/31 01:26:06 lukem Exp $
|
2000-03-10 14:53:23 +03:00
|
|
|
#
|
|
|
|
|
|
|
|
# PROVIDE: mountd
|
2002-01-31 04:26:05 +03:00
|
|
|
# REQUIRE: NETWORKING mountall beforemountlkm rpcbind quota
|
2000-03-10 14:53:23 +03:00
|
|
|
|
|
|
|
. /etc/rc.subr
|
|
|
|
|
|
|
|
name="mountd"
|
2001-06-16 10:13:09 +04:00
|
|
|
rcvar=$name
|
2000-03-10 14:53:23 +03:00
|
|
|
command="/usr/sbin/${name}"
|
|
|
|
required_files="/etc/exports"
|
|
|
|
start_precmd="mountd_precmd"
|
2000-04-30 17:23:04 +04:00
|
|
|
extra_commands="reload"
|
2000-03-10 14:53:23 +03:00
|
|
|
|
|
|
|
mountd_precmd()
|
|
|
|
{
|
|
|
|
rm -f /var/db/mountdtab
|
2001-04-30 03:57:25 +04:00
|
|
|
( umask 022 ; > /var/db/mountdtab )
|
2000-03-10 14:53:23 +03:00
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2000-05-13 12:45:06 +04:00
|
|
|
load_rc_config $name
|
2000-04-30 17:23:04 +04:00
|
|
|
run_rc_command "$1"
|