blob: 2e7a3f95f0480e0da663d33196d97392b0978a5c (
plain)
1
2
3
4
5
6
7
8
9
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
|