Tomasz Chmielewski wrote:
> I noticed that BackupPC 3.0.0beta1 seems to have a serious bug in
> incremental backups - "exclude" options are not respected.
Using BackupPC excludes instead of rsync excludes seems to work - this
one doesn't exclude for incrementals:
> $Conf{RsyncArgs} = [
> '-v',
> '--numeric-ids',
> '--perms',
> '--owner',
> '--group',
> '--devices',
> '--links',
> '--times',
> '--recursive',
> '--exclude=/backup/*',
> '--exclude=/unattended/*'
> ];
>
>
This one does exclude for incrementals:
$Conf{BackupFilesExclude} = [
'/backup/*',
'/unattended/*'
];
$Conf{RsyncArgs} = [
'-v',
# '-z',
'--numeric-ids',
# '--bwlimit=8',
'--perms',
'--owner',
'--group',
'--devices',
'--links',
'--times',
'--recursive',
];
Nonetheless, IMHO it's a bug.
--
Tomasz Chmielewski
http://wpkg.org
-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
BackupPC-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/backuppc-users
http://backuppc.sourceforge.net/