diff options
author | Holger Paradies <retabell@gmx.de> | 2025-08-07 15:38:36 +0200 |
---|---|---|
committer | Holger Paradies <retabell@gmx.de> | 2025-08-07 15:38:36 +0200 |
commit | af5750c5d391414f0eee72eebc89c73154ab44d7 (patch) | |
tree | d13e279ea2806953c529569638ac1cc36b2cc8a9 /config/chroot_local-hooks | |
parent | a6eacd20725c06e80ac6fc8627033fb29557d7a0 (diff) | |
download | kanotix-af5750c5d391414f0eee72eebc89c73154ab44d7.zip kanotix-af5750c5d391414f0eee72eebc89c73154ab44d7.tar.gz |
ntfs3-override
Diffstat (limited to 'config/chroot_local-hooks')
-rwxr-xr-x | config/chroot_local-hooks/03-ntfs3-override | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/config/chroot_local-hooks/03-ntfs3-override b/config/chroot_local-hooks/03-ntfs3-override new file mode 100755 index 0000000..2e7a3f9 --- /dev/null +++ b/config/chroot_local-hooks/03-ntfs3-override @@ -0,0 +1,10 @@ +#!/bin/sh + +for file in /root/config/*; do [ -r $file ] && . $file; done + +case "${LB_DISTRIBUTION}" in + +bookworm|trixie) + [ -e /sbin/mount.ntfs3 ] || ln -sfv $(readlink /sbin/mount.ntfs-3g) /sbin/mount.ntfs3 + ;; +esac |