From 81b9534dc5bb04c79a0aa03afa6d05b1ee0fc921 Mon Sep 17 00:00:00 2001 From: "Jordan K. Hubbard" Date: Wed, 23 Aug 1995 12:59:27 +0000 Subject: Add a "noauto" flag so that you can do things like prevent your system from not coming up multiuser just because you have a CD mount in fstab but no CD in the drive. Submitted by: "Full Name Not Supplied" --- sbin/mount/mount.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'sbin/mount/mount.c') diff --git a/sbin/mount/mount.c b/sbin/mount/mount.c index 2121ae11d0eb..bcf65a3430cb 100644 --- a/sbin/mount/mount.c +++ b/sbin/mount/mount.c @@ -84,6 +84,7 @@ static struct opt { { MNT_ASYNC, "asynchronous" }, { MNT_EXPORTED, "NFS exported" }, { MNT_LOCAL, "local" }, + { MNT_NOAUTO, "noauto" }, { MNT_NODEV, "nodev" }, { MNT_NOEXEC, "noexec" }, { MNT_NOSUID, "nosuid" }, @@ -166,10 +167,12 @@ main(argc, argv) continue; if (badvfsname(fs->fs_vfstype, vfslist)) continue; + if (!strstr(fs->fs_mntops, "noauto")) { if (mountfs(fs->fs_vfstype, fs->fs_spec, - fs->fs_file, init_flags, options, - fs->fs_mntops)) - rval = 1; + fs->fs_file, init_flags, options, + fs->fs_mntops)) + rval = 1; + } } else { if ((mntsize = getmntinfo(&mntbuf, MNT_NOWAIT)) == 0) -- cgit v1.2.3