adamglauser
adamglauser
I encountered the same problem. I am using a version of OpenSSH that is not affected by the CVE-2016-0777 vulnerability, so I disabled the use of the UseRoaming option as...
I think that ``` alias rsync='rsync -e "/path/to/ssh-ident"' ``` might work. My solution has been to use the `RSYNC_RSH` environment variable, which I set to `~/bin/ssh`, where `~/bin/ssh` is actually...
Is `/home/mc0e/bin/ssh` symlinked to (or a renamed version of) 'ssh-ident'? If so, my suggestion should work if amended to be one of: ``` alias rsync='rsync -e /home/mc0e/bin/ssh' alias rsync='BINARY_SSH=ssh rsync...