https://bugzilla.samba.org/show_bug.cgi?id=10705
Summary: usermap/groupmap do not escape wildcards passed to the remote Product: rsync Version: 3.1.1 Platform: All OS/Version: All Status: NEW Severity: normal Priority: P5 Component: core AssignedTo: way...@samba.org ReportedBy: dar...@dons.net.au QAContact: rsync...@samba.org Hi, I was trying to map all GID/UID to 0:0 with.. rsync --chown 0:0 foo user@remote:/tmp but it bombs out with.. rsync: No match. rsync: connection unexpectedly closed (0 bytes received so far) [sender] rsync error: error in rsync protocol data stream (code 12) at io.c(226) [sender=3.1.1] I am guessing that --chown 0:0 maps internally to --usermap *:0 --groupmap *:0 but they aren't escaped properly. As a work around I am using.. rsync --usermap \\\*:0 --groupmap \\\*:0 foo user@remote:/tmp and it works. (i.e. the *'s are escaped enough the remote invocation doesn't fail). I imagine this would also work if the remote shell did not error on non-matching globs, however I think the existing behaviour is still broken as if the glob did match the behaviour could be very odd. -- Configure bugmail: https://bugzilla.samba.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug. -- Please use reply-all for most replies to avoid omitting the mailing list. To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html