Andrew Roden writes:

> I am trying to backup a Debian linux server from another Debian linux server
> running backup pc but I am getting the following message in the Xfer Error
> log...
> 
> Contents of file /backup/backuppc/pc/demo/XferLOG.bad.z, modified 2005-09-21
> 15:06:50
> 
> Running: /usr/bin/ssh -q -x -l root demo /usr/bin/rsync --server --sender
> --one-file-system -v --exclude=/proc --ignore-times . /home/

Looks like a bunch of rsync args are missing, in particular
--recursive which makes rsync recurse into directories.

Looks this setting might have been mangled:

    $Conf{RsyncArgs} = [
            #
            # Do not edit these!
            #
            '--numeric-ids',
            '--perms',
            '--owner',
            '--group',
            '--devices',
            '--links',
            '--times',
            '--block-size=2048',
            '--recursive',
    };

Craig


-------------------------------------------------------
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. 
Download it for free - -and be entered to win a 42" plasma tv or your very
own Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
_______________________________________________
BackupPC-users mailing list
BackupPC-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/backuppc-users
http://backuppc.sourceforge.net/

Reply via email to