[BusyBox-cvs] busybox/util-linux mount.c,1.108,1.109
Erik Andersen
andersen at codepoet.org
Fri Feb 28 06:29:30 UTC 2003
Update of /var/cvs/busybox/util-linux
In directory winder:/tmp/cvs-serv25673/util-linux
Modified Files:
mount.c
Log Message:
There is no good reason to prevent nfs mounts from being mounted
during 'mount -a'. If the user wants to do that, hey, its their
lifs. If the nfs server is down and they don't want to wait for
nfs to time out, that is their problem.
-Erik
Index: mount.c
===================================================================
RCS file: /var/cvs/busybox/util-linux/mount.c,v
retrieving revision 1.108
retrieving revision 1.109
diff -u -d -r1.108 -r1.109
--- mount.c 5 Dec 2002 07:24:05 -0000 1.108
+++ mount.c 28 Feb 2003 06:29:27 -0000 1.109
@@ -439,8 +439,8 @@
if (all && ( /* If we're mounting 'all' */
(strstr(m->mnt_opts, "noauto")) || /* and the file system isn't noauto, */
- (strstr(m->mnt_type, "swap")) || /* and isn't swap or nfs, then mount it */
- (strstr(m->mnt_type, "nfs")))) {
+ (strstr(m->mnt_type, "swap")))) /* and isn't swap, then mount it */
+ {
continue;
}
More information about the busybox-cvs
mailing list