Date: Sun, 13 May 2001 08:20:04 -0700 (PDT) From: "Dmitry A. Yanko" <fm@astral.ntu-kpi.kiev.ua> To: freebsd-bugs@FreeBSD.org Subject: Re: conf/11376: NFS mount may be happening too soon in /etc/rc Message-ID: <200105131520.f4DFK4m05122@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
The following reply was made to PR conf/11376; it has been noted by GNATS.
From: "Dmitry A. Yanko" <fm@astral.ntu-kpi.kiev.ua>
To: freebsd-gnats-submit@FreeBSD.org, Harlan.Stenn@pfcs.com
Cc:
Subject: Re: conf/11376: NFS mount may be happening too soon in /etc/rc
Date: Sun, 13 May 2001 18:15:44 +0300
Under FreeBSD 4.3-STABLE #2: Sun May 13 18:05:09 EEST 2001 problem still
exist.
=============================================================
--- rc.old Sun May 13 17:34:34 2001
+++ rc Sun May 13 17:41:04 2001
@@ -297,15 +297,6 @@
;;
esac
-# Mount NFS filesystems if present in /etc/fstab
-case "`mount -d -a -t nfs`" in
-*mount_nfs*)
- echo -n 'Mounting NFS file systems:'
- mount -a -t nfs
- echo '.'
- ;;
-esac
-
# Whack the pty perms back into shape.
#
if ls /dev/tty[pqrsPQRS]* > /dev/null 2>&1; then
@@ -412,6 +403,15 @@
if [ -n "${network_pass2_done}" ]; then
network_pass3
fi
+
+# Mount NFS filesystems if present in /etc/fstab
+case "`mount -d -a -t nfs`" in
+*mount_nfs*)
+ echo -n 'Mounting NFS file systems:'
+ mount -a -t nfs
+ echo '.'
+ ;;
+esac
# Check the password temp/lock file
#
=============================================
To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-bugs" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200105131520.f4DFK4m05122>
