On 2017-06-01 19:45, Bob Katz wrote:
Would this work?

$Conf{BackupFilesExclude} = {
  '*cache*' => [
    ''
  ]
};

No.

At best, this might exclude all *shares* that happen to have some variation of "cache" in the name, but I'm not even sure it would do that, depending on the xfer method.

What you're probably looking for is something along these lines:

$Conf{BackupFilesExclude} = {
 '*' => [
   '*cache*'
   ]
};

I note that this will exclude all files containing the word cache as well as all files in all directories containing the word cache, which seems like a very poor idea, should somebody named "musicache" have a user directory or one tries to store their research files on cachexias.
------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
_______________________________________________
BackupPC-users mailing list
BackupPC-users@lists.sourceforge.net
List:    https://lists.sourceforge.net/lists/listinfo/backuppc-users
Wiki:    http://backuppc.wiki.sourceforge.net
Project: http://backuppc.sourceforge.net/

Reply via email to