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.

17 lines
674 B

  1. # link-exdev
  2. If using path preservation and a `link` fails with `EXDEV` make a call
  3. to `symlink` where the target is the `oldlink` and the `linkpath` is
  4. the newpath. The target value is determined by the value of
  5. `link-exdev`.
  6. * `link-exdev=passthrough`: Return EXDEV as normal.
  7. * `link-exdev=rel-symlink`: A relative path from the newpath.
  8. * `link-exdev=abs-base-symlink`: An absolute value using the
  9. underlying branch.
  10. * `link-exdev=abs-pool-symlink`: An absolute value using the mergerfs
  11. mount point.
  12. * Defaults to `passthrough`.
  13. **NOTE:** It is possible that some applications check the file they
  14. link. In those cases, it is possible it will error or complain.