Jockes wrote:
> I have some really big directories in the home dir. I would like to
> exclude those dirs from backup but can not get it working.
>
> $Conf{XferMethod} = 'rsync';
>
> $Conf{RsyncShareName} = [
> '/etc',
> '/root',
> '/home/userX/BackupTest'
> ];
>
> $Conf{BackupFilesExclude} =
> [
> '/home/userX/BackupTest/IgnoreThisDir'
> ];
>
> Any idea?
See the examples in the docs:
http://backuppc.sourceforge.net/faq/BackupPC.html#item__conf_backupfilesexclude_
Since you're using rsync shares, you have to specify the share name
and a dir relative to the share, so I guess it should be:
----
$Conf{BackupFilesExclude} = {
'/home/userX/BackupTest' => ['/IgnoreThisDir'],
};
----
Nils Breunese.
-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
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/