damian
Dabbler
- Joined
- Oct 26, 2013
- Messages
- 14
While setting up some rsync tanks, I noticed that it seems to strip out quotes on the extra parameters section. Also it does not allow me to specify an alternate SSH cipher, as I want to use arcfour for backing up data over my LAN without any big encryption overhead effectively speeding up my transfers.
Entering: --exclude Thumbs.db -e 'ssh -p 22 -c arcfour -x' --log-file=/var/log/rsync.log
Gets executed as: rsync -r -t -z -a -X --exclude Thumbs.db -e ssh -p 22 -c arcfour -x --log-file=/var/log/rsync.log -e ssh -p 22 -o BatchMode=yes -o StrictHostKeyChecking=yes ...
Entering: --exclude Thumbs.db -e 'ssh -p 22 -c arcfour -x' --log-file=/var/log/rsync.log
Gets executed as: rsync -r -t -z -a -X --exclude Thumbs.db -e ssh -p 22 -c arcfour -x --log-file=/var/log/rsync.log -e ssh -p 22 -o BatchMode=yes -o StrictHostKeyChecking=yes ...