şunun yansıması https://github.com/trapexit/mergerfs.git
25'ten fazla konu seçemezsiniz
Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
16 satır
902 B
16 satır
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.
|
|
|