Put 'noauto' for the auto-generated NTFS '/etc/fstab' entries.
authorshort <>
Sat, 27 Sep 2003 06:10:45 +0000 (06:10 +0000)
committershort <>
Sat, 27 Sep 2003 06:10:45 +0000 (06:10 +0000)
 - Captive otherwise may lock up system boot.
 - Bugreport by the courtesy of Martin Drab.

src/install/fstab/main.c

index 76ddbdf..8ceb142 100644 (file)
@@ -128,7 +128,7 @@ gint dir_count;
                g_warning(_("Error creating mount directory \"%s\" for device \"%s\": %m"),
                                mntent_local.mnt_dir,mntent_local.mnt_fsname);
        mntent_local.mnt_type="captive-ntfs";
-       mntent_local.mnt_opts="defaults";       /* 'mntent_local.mnt_opts' must be != NULL ! */
+       mntent_local.mnt_opts="defaults,noauto";        /* 'mntent_local.mnt_opts' must be != NULL ! */
        if (optarg_verbose)
                g_message(_("Creating captive-ntfs mntent: %s -> %s"),mntent_local.mnt_fsname,mntent_local.mnt_dir);
        if (addmntent(mntentfilew,&mntent_local))