Since Linux 2.4.0 it is possible to remount parts of the file hierarchy somewhere else.
Steps to reproduce:
In /etc/mtab you'll see this:
This leads to duplicate triggers in the file system discovery. Maybe you should exclude bind mounts.
Regards,
Yves
Steps to reproduce:
Code:
$ mkdir mount-1 mount-2 $ mount --bind mount-1 mount-2 $ echo "test" > mount-1/test.txt $ ls mount-* mount-1: test.txt mount-2: test.txt
In /etc/mtab you'll see this:
Code:
/mnt/mount-1 /mnt/mount-2 none rw,bind 0 0
Regards,
Yves


Comment