I have to transfer large amounts of data (>80 GB) over ssh using rsync. Everything is working fine, but the DSL connection where the backup data is sent from will drop once every 24h for up to 3 minutes (switching providers is not an option).
How do I:
Automatically restart the transfer when the connection is back up?
Make sure there are not by accident two rsync commands running at the same time?
while ./run_script; do echo "Retrying..."; done; echo "Done."Make surerun_scriptreturns0on success. – Kerrek SB Jun 27 '11 at 11:28