Run totally silent rsync?

Posted by jackr on Server Fault See other posts from Server Fault or by jackr
Published on 2013-10-18T21:12:17Z Indexed on 2013/10/18 21:57 UTC
Read the original article Hit count: 144

Filed under:
|

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/. [email protected]:/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 [email protected] 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.

© Server Fault or respective owner

Related posts about ssh

Related posts about rsync