Use /sbin/mount.ntfs-3g as default handler for ntfs.
authorMichael Prokop <mika@grml.org>
Sat, 14 Nov 2009 12:19:36 +0000 (13:19 +0100)
committerMichael Prokop <mika@grml.org>
Sat, 14 Nov 2009 13:35:00 +0000 (14:35 +0100)
debian/changelog
etc/grml/fai/config/scripts/GRMLBASE/90-update-alternatives

index 0c44b74..dfe6648 100644 (file)
@@ -19,8 +19,10 @@ grml-live (0.9.33) UNRELEASED; urgency=low
     - Note usage of GeoIP-selected mirrors.
     - Add commented examples for DE/AT mirrors.
     Thanks for the suggestions to Sedat Dilek. [Closes: issue756]
+  * Use /sbin/mount.ntfs-3g as default handler for ntfs. Thanks
+    for bringing this issue up, Richard Hartmann.
 
- -- Michael Prokop <mika@grml.org>  Sat, 14 Nov 2009 12:46:22 +0100
+ -- Michael Prokop <mika@grml.org>  Sat, 14 Nov 2009 13:18:10 +0100
 
 grml-live (0.9.32) unstable; urgency=low
 
index 67f0998..bf1f11e 100755 (executable)
@@ -57,5 +57,11 @@ if [ -r $target/usr/bin/wm-ng ] ; then
    fi
 fi
 
+# sadly isn't available via update-alternates, anyway - use
+# ntfs-3g (if available) as default for ntfs
+if [ -r $target/sbin/mount.ntfs-3g ] ; then
+   $ROOTCMD ln -s /sbin/mount.ntfs-3g /sbin/mount.ntfs
+fi
+
 ## END OF FILE #################################################################
 # vim:ft=sh expandtab ai tw=80 tabstop=4 shiftwidth=3