https://bugzilla.samba.org/show_bug.cgi?id=13147

--- Comment #3 from roland <devz...@web.de> ---
apparently, ssh as a transport is the culprit, as it doesn`t happen with rsync
in daemon mode.

i found some osx related ticket on "stderr/stdout merge" (
https://github.com/ansible/ansible/issues/14960 ) 

after further searching, i found some infos on pty/tty allocation:
https://stackoverflow.com/questions/7114990/pseudo-terminal-will-not-be-allocated-because-stdin-is-not-a-terminal
 (see comment "Optional background information:")

 and...


# ssh root@localhost "echo stdout; echo stderr >&2" >/dev/null
stderr

# ssh root@localhost "echo stdout; echo stderr >&2" 2>/dev/null
stdout

# ssh -t root@localhost "echo stdout; echo stderr >&2" 2>/dev/null
stdout
stderr

gotcha !

now the question is how to work around the problem...

-- 
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

Reply via email to