Michał Panasiewicz wrote:
how exclude all files in:
*/temp/*
*/windows/temp/*
*/temporary internet files/*
*/Cookies/*
etc etc
dir "c:\documents and settings" is called "profiles" in rsync share
$Conf{BackupFilesExclude} = [
'/temp',
'/windows/temp',
'/tmp',
'/temporary',
'/Temporary Internet Files',
'/Cookies',
'/All Users',
'/Default User',
'/LocalService',
'/NetworksService',
'/cwrsync',
];
All excludes are relative to the path. thus if your top level folder is
"c:\Documents and Settings", then excluding "/temp" means exclude
"c:\Documents and Settings\temp"
What you really need is something like this....
$Conf{BackupFilesExclude} = [
'*/Local Settings/Temp',
'*/Local Settings/Temporary Internet Files',
'*/Cookies',
'/All Users',
'/Default User',
'/LocalService',
'/NetworksService',
];
Because your rsync share is at the "c:\Documents and Settings" level,
that wont even go into c:\windows\temp or c:\temp or c:\tmp
Hope that helps.
Regards,
Les
-------------------------------------------------------
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
[email protected]
https://lists.sourceforge.net/lists/listinfo/backuppc-users
http://backuppc.sourceforge.net/