2000-03-10 14:53:23 +03:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2001-06-16 10:13:09 +04:00
|
|
|
# $NetBSD: nfsd,v 1.4 2001/06/16 06:13:10 lukem 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}"
|
2001-06-16 10:13:09 +04:00
|
|
|
required_vars="mountd 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"
|