Displaying 1 result from an estimated 1 matches for "servpath1".
2008 Jul 29
1
rsync --delete* Bug or feature-request
Hello,
I'm trying to do a differential backup. Each commands/scripts are launch on backup server side.
- rsync-ref: 1 script perform a complete backup to a directory "ref".
   something like that:
     rsync --archives \
       station:/path1/ /servbasepath/ref/servpath1/
- rsync-diff: 1 script perform a differential backup to a directory "diff".
   something like that:
     rsync --archives \
       --compare-dest=/servpath1/ \
       --delete \
       station:/path1/ /servbasepath/diff/servpath1/
See the following scenario:
on serv:
  - rsync-ref is...