On 6/24/2014 12:49 PM, Pavel Smejkal wrote:
>
> $Conf{BackupFilesExclude} = {
>   'media' => [
>     '/mnt',
>     '/media'
>   ],
>   'proc' => [
>     '/proc',
>     '/run',
>     '/sys'
>   ]
> };

This is probably the most common configuration error.  Here is what 
those settings say:

Exclude '/mnt' and '/media' on the 'media' share
Exclude '/proc', '/run', and '/sys' on the 'proc' share

It should probably look like this:

$Conf{BackupFilesExclude} = {
   '/' => [
     '/mnt',
     '/media',
     '/proc',
     '/run',
     '/sys'
   ]
};

Assuming that the sharename is '/'.  If not, adjust as necessary. Basic 
syntax is this:

$Conf{BackupFilesExclude} = {
   'sharename1' => [
     'exclusion1',
     'exclusion2',
     'exclusion3'
   ],
   'sharename2' => [
     'exclusion4',
     'exclusion5',
     'exclusion6'
   ],
};

You can use the sharename '*' if you want the exclusions to apply to all 
shares.

-- 
Bowie

------------------------------------------------------------------------------
Open source business process management suite built on Java and Eclipse
Turn processes into business applications with Bonita BPM Community Edition
Quickly connect people, data, and systems into organized workflows
Winner of BOSSIE, CODIE, OW2 and Gartner awards
http://p.sf.net/sfu/Bonitasoft
_______________________________________________
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/

Reply via email to