mirror of https://github.com/trapexit/mergerfs.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
902 B
16 lines
902 B
# follow-symlinks
|
|
|
|
This feature, when enabled, will cause symlinks to be interpreted by mergerfs as their target (depending on the mode).
|
|
|
|
When there is a getattr/stat request for a file mergerfs will check if the file is a symlink and depending on the follow-symlinks setting will replace the information about the symlink with that of that which it points to.
|
|
|
|
When unlink'ing or rmdir'ing the followed symlink it will remove the symlink itself and not that which it points to.
|
|
|
|
never: Behave as normal. Symlinks are treated as such.
|
|
directory: Resolve symlinks only which point to directories.
|
|
regular: Resolve symlinks only which point to regular files.
|
|
all: Resolve all symlinks to that which they point to.
|
|
Symlinks which do not point to anything are left as is.
|
|
|
|
WARNING: This feature works but there might be edge cases yet found. If you find any odd behaviors please file a ticket on github.
|
|
|