search for: prexfer

Displaying 1 result from an estimated 1 matches for "prexfer".

Did you mean: prefer
2019 Nov 08
1
Regarding an "earlier" variant of `pre-xfer exec` [feature request and proposed patch]
...cal dir and mount a > subdir inside that local directory based on the pre-xfer data. Unfortunately this proposed hack doesn't work (at least not in the latest 3.1.3), because the `chdir` includes the sub-path inside the module. (I.e. there isn't an `chdir(module_path) && execve(prexfer) && chdir(arg_path)` but a single `chdir(module_and_arg_path) && execve(prexfer)`.) Therefore I've tried to patch `rsync` myself, mainly by copy-pasting the code related to `pre-xfer exec` option: * https://github.com/cipriancraciun/rsync/commit/1f85c5f596542ed878d09a60e55ea02...