freebsd-src/etc/rc.d/nfsd
Gordon Tetlow c1c086d9fe nfsd and mountd now live in /usr/sbin not /sbin. Correct the command args.
This also reduces the diff to NetBSD (very marginally).

Reviewed by:	jake (mentor)
2002-07-07 22:19:08 +00:00

44 lines
721 B
Bash
Executable file

#!/bin/sh
#
# $NetBSD: nfsd,v 1.4 2001/06/16 06:13:10 lukem Exp $
# $FreeBSD$
#
# PROVIDE: nfsd
# REQUIRE: mountd
# KEYWORD: FreeBSD NetBSD
. /etc/rc.subr
name="nfsd"
rcvar=`set_rcvar nfs_server`
command="/usr/sbin/${name}"
case `${CMD_OSTYPE}` in
FreeBSD)
command_args="${nfs_server_flags}"
required_vars="portmap_enable"
start_precmd="nfsd_precmd"
;;
NetBSD)
required_vars="mountd rpcbind"
start_precmd=
;;
esac
nfsd_precmd()
{
if ! sysctl vfs.nfsrv >/dev/null 2>&1; then
force_depend nfsserver || return 1
fi
if checkyesno nfs_reserved_port_only ; then
echo -n ' NFS on reserved port only=YES'
sysctl vfs.nfsrv.nfs_privport=1 > /dev/null
fi
return 0
}
load_rc_config $name
run_rc_command "$1"