I have a cronjob that runs hourly, and is totally silent unless something goes wrong. Well ... almost ...
A part of the job is
rsync --del -Cacqrz public/. user@host.example.com:/target/path
This always prints "logged in". How can I make it stop? (Short of 'grep -v' ;-)
I don't get the "logged in" message if I do things like
ssh user@host.example.com ls
The transport is, of course, ssh (using keys).
Source host is either OSX or Ubuntu (tried both, same behavior). Target host is Linux of some flavor.