search for: avzne

Displaying 2 results from an estimated 2 matches for "avzne".

Did you mean: avze
2011 Jul 09
0
Problem with --dry-run
Hi Gents, I have written a backup script with rsync, which is working fine for a long time. Now a problem has occured. which I am not able to solve by my own: Before I am doing the backup I am checkig if there are any changes to backup ... rsync --delete $RSYNC_EXCLUDE -avzne "$RSYNC_SSH" $RSYNC_SOURCE $RSYNC_DESTINATION But when I have created a path of new directories in $RSYNC_SOURCE e. g. $RSYNC_SOURCE/new_dir/new_dir/new.file then its fails with ... skipping daemon-excluded directory "$RSYNC_SOURCE/new_dir/new_dir" *** Skipping any contents fr...
2011 Jul 13
0
How to call rsync client so that is detects that server has gone away?
Hi Larry, Your tech details are way beyond my knowledge, but maybe python can do the job for you too? I use this python script (from the python cookbook) and crontab to keep my sheep in the dry: #!/usr/bin/env python #wraps up rsync to synchronize two directories # ! -- should contain check of disk space using rsync -n option for drytest ! from subprocess import call import sys import time