Our backup system duplicity
does not support Linux hard links. To prevent data loss, I want to enforce that no hard links exist on our systems. AFAIK, there is no ext4 mount option to disable hard link functionality.
I could remove the ln
utility but this would not disable the underlying system call (and besides, I want to keep symlinks).
Anyone got a good idea how to solve this? Recompile the kernel with EXT4_LINK_MAX set to 1?