My backup server is connected to my SAN rather than using the LAN vie NFS or CIFS to get to the filesystems to be backed up. It is part of the cluster and can directly access the GFS volumes. I'd like to avoid using the added overhead of SSH'ing to itself to backup the volumes.
I tried just changing 'RsyncClientCmd' to "$rsyncPath $argList+" but it
seems BackupPC is expecting the SSH and is now improperly escaping
'RsyncArgs'. The hitch is with a space in one.
$Conf{RsyncClientCmd} = '$rsyncPath $argList+';
$Conf{RsyncArgs} = [
'--numeric-ids',
'--perms',
'--owner',
'--group',
'-D',
'--links',
'--hard-links',
'--times',
'--block-size=2048',
'--recursive',
'--filter',
'dir-merge /.backuppc-filter'
];
The last two are an addition I use to allow users to exclude files from
the backup with properly crafted .backuppc-filter files in their
directories.
I end up with an extra slash after the dir-merge.
/usr/bin/rsync --server --sender --numeric-ids --perms --owner --group
-D --links --hard-links --times --block-size=2048 --recursive --filter
dir-merge\ /.backuppc-filter --ignore-times . /etc/
Is anybody avoiding the SSH for backing up local filesystems?
Paul
--
Paul Dugas - [email protected] - 404.932.1355
signature.asc
Description: This is a digitally signed message part
------------------------------------------------------------------------------ Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are powering Web 2.0 with engaging, cross-platform capabilities. Quickly and easily build your RIAs with Flex Builder, the Eclipse(TM)based development software that enables intelligent coding and step-through debugging. Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
_______________________________________________ BackupPC-users mailing list [email protected] List: https://lists.sourceforge.net/lists/listinfo/backuppc-users Wiki: http://backuppc.wiki.sourceforge.net Project: http://backuppc.sourceforge.net/
