Infos I didn't found that easily with Google and had to find out myself. Hereby given back to the net...
When rsync --delete doesn't work
Submitted by llando on Thu, 02/24/2011 - 09:47.
David Grant explains why rsync might silentely refuse to delete anything. It happens when you call rsync without a trailing slash in the source path like this:
rsync -az -e ssh --delete /data server:/data
It just won't delete anything. It will when running it like this:
rsync -az -e ssh --delete /data/ server:/data
Post new comment