Tomasz Chmielewski wrote:
> I use rsyncd to retrieve files from Windows machines.
> 
> I transfer such shares:
> 
> $Conf{RsyncShareName} = ['hDrive', 'iDrive', 'jDrive', 'kDrive'];
> 
> 
> And I would like to skip transferring "DFS" folder from "hDrive".
> 
> How should I do it?
> 
> I tried the following below, but it doesn't work:
> 
> $Conf{BackupFilesExclude} = {
>         'hDrive' => ['DFS/*',
>                      '/DFS/*',
>                      'ygdrive/c/WINDOWS/system32/s:/DFS/*',
>                   'cygdrive/c/WINDOWS/system32/s:/DFS/*']
>      };

All right, I figured it out... I had yet another 
$Conf{BackupFilesExclude} for the next share... Which just "overwrote" 
the settings for the first drive.

So it should look like that:

$Conf{BackupFilesExclude} = {
        'hDrive' => ['/DFS/*'],
        'iDrive' => ['/none/*']
     };


-- 
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
BackupPC-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/backuppc-users
http://backuppc.sourceforge.net/

Reply via email to