search for: avvvhx

Displaying 2 results from an estimated 2 matches for "avvvhx".

2018 Jun 10
1
[Bug 13467] New: an xattr filter rule is treated as a file filter rule on the remote side
...ctual xattrs to be present, so the bug can be reproduced even if the file system being used does not support xattrs. Prerequisites for the repros: - ssh service running on localhost - mkdir /tmp/{a,b} - touch /tmp/a/1 /tmp/b/{1,2} Repro #1, sender is local: $ rsync --filter='-x! user.*' -avvvHX --delete /tmp/a/. localhost:/tmp/b Result: - output: [Receiver] add_rule(-! user.*) - output: [generator] protecting file 2 because of pattern user.* - output: [generator] protecting file 1 because of pattern user.* - expected: /tmp/b/2 is deleted, actual: not deleted Repro #2, sender is remote: $...
2018 Apr 29
3
bug: xattr filter rule treated as file filter rule on the remote side
Summary: an xattr filter rule (e.g. --filter='-x! user.*’, which is suggested by the documentation) is treated as a file filter rule on the remote side. Repro #1, sender is local: host1$ rsync --filter=‘-x! user.*' -avvvHX --delete /tmp/test/. host2:test ... [Receiver] add_rule(-! user.*) Repro #2, sender is remote: host1$ rsync --filter=‘-x! user.*' -avvvHX --delete host2:test/. /tmp/test ... [sender] add_rule(-! user.*) One possible and quite dangerous symptom of this is that the incorrect (-! user.*) rule ma...