From: Michael Prokop Date: Sat, 14 Nov 2009 12:19:36 +0000 (+0100) Subject: Use /sbin/mount.ntfs-3g as default handler for ntfs. X-Git-Tag: v0.9.33~26 X-Git-Url: https://git.grml.org/?p=grml-live.git;a=commitdiff_plain;h=9b3d5256107f1540b8b74a808118b71876852ea9 Use /sbin/mount.ntfs-3g as default handler for ntfs. --- diff --git a/debian/changelog b/debian/changelog index 0c44b74..dfe6648 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 Sat, 14 Nov 2009 12:46:22 +0100 + -- Michael Prokop Sat, 14 Nov 2009 13:18:10 +0100 grml-live (0.9.32) unstable; urgency=low diff --git a/etc/grml/fai/config/scripts/GRMLBASE/90-update-alternatives b/etc/grml/fai/config/scripts/GRMLBASE/90-update-alternatives index 67f0998..bf1f11e 100755 --- a/etc/grml/fai/config/scripts/GRMLBASE/90-update-alternatives +++ b/etc/grml/fai/config/scripts/GRMLBASE/90-update-alternatives @@ -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