From owner-freebsd-bugs Sun Dec 10 06:24:01 1995 Return-Path: owner-bugs Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id GAA13745 for bugs-outgoing; Sun, 10 Dec 1995 06:24:01 -0800 (PST) Received: from sunny.bog.msu.su (dima@sunny.bog.msu.su [158.250.20.1]) by freefall.freebsd.org (8.7.3/8.7.3) with SMTP id GAA13739 for ; Sun, 10 Dec 1995 06:23:54 -0800 (PST) Received: (from dima@localhost) by sunny.bog.msu.su (8.6.12/8.6.12) id RAA04732; Sun, 10 Dec 1995 17:22:23 +0300 Date: Sun, 10 Dec 1995 17:22:22 +0300 (????) From: Dmitry Khrustalev To: Jason Mechler cc: freebsd-bugs@FreeBSD.org Subject: Re: nfs client bug in /etc/rc In-Reply-To: <199512100428.WAA09693@raptor.mtc.ti.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-bugs@FreeBSD.org Precedence: bulk On Sat, 9 Dec 1995, Jason Mechler wrote: > > I discovered an error in /etc/rc relating to mounting nfs filesystems > at boot time. The line > > mount -a -t nfs >/dev/null 2>&1 > > comes immediately after /etc/netstart is run. Unfortunately, this is > before the nfsiod daemon is started, so if there are any nfs > filesystems in /etc/fstab, the systems hang for a while and then > finally gets an RPC Portmapper error when trying to do the nfs mounts. > Nfsiod is not necessary for client nfs to work. Your problem is located elsewhere. -Dima. > It's certainly easy to fix. You just have to move the above line into > the nfs_client section as below. > > if [ "X${nfs_client}" = X"YES" ]; then > echo -n ' nfsiod'; nfsiod -n 4 > new--> mount -a -t nfs >/dev/null 2>&1 > fi > > > > ------------- > Jason Mechler > jasonm@ccwf.cc.utexas.edu >