2000-03-10 14:53:23 +03:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2000-06-03 02:54:08 +04:00
|
|
|
# $NetBSD: nfsd,v 1.3 2000/06/02 22:54:12 fvdl Exp $
|
2000-03-10 14:53:23 +03:00
|
|
|
#
|
|
|
|
|
|
|
|
# PROVIDE: nfsd
|
|
|
|
# REQUIRE: mountd
|
|
|
|
|
|
|
|
. /etc/rc.subr
|
|
|
|
|
|
|
|
name="nfsd"
|
|
|
|
rcvar="nfs_server"
|
|
|
|
command="/usr/sbin/${name}"
|
2000-06-03 02:54:08 +04:00
|
|
|
required_vars="rpcbind"
|
2000-03-10 14:53:23 +03:00
|
|
|
|
2000-05-13 12:45:06 +04:00
|
|
|
load_rc_config $name
|
2000-03-10 14:53:23 +03:00
|
|
|
run_rc_command "$1"
|