I have a script that calls rsync in the following way:
rsync -x -v -rlptgoD --delete-after --progress --exclude-from=/etc/rsync.exclude.list ${FS} rsync://(server)/(module)
The intent is to perform a backup of this machine via rsync. This is placed in a while-do-done loop to fill in the value of ${FS}
The problem I am having is that it seems to be doing a full re-copy of everything every time. For example, /usr/bin is dead static - on this machine, /usr doesn't change, but the logging I have on the server side indicates that every file in /usr/bin is being deleted and resynced every time the script is run.
How can I stop this? I went over the flag list, and it appears that the flags are in order.
rsync -x -v -rlptgoD --delete-after --progress --exclude-from=/etc/rsync.exclude.list ${FS} rsync://(server)/(module)
The intent is to perform a backup of this machine via rsync. This is placed in a while-do-done loop to fill in the value of ${FS}
The problem I am having is that it seems to be doing a full re-copy of everything every time. For example, /usr/bin is dead static - on this machine, /usr doesn't change, but the logging I have on the server side indicates that every file in /usr/bin is being deleted and resynced every time the script is run.
How can I stop this? I went over the flag list, and it appears that the flags are in order.