BackupPC-users

Re: [BackupPC-users] backuppc + cubox

2014-06-24 15:21:05
Subject: Re: [BackupPC-users] backuppc + cubox
From: Bowie Bailey <Bowie_Bailey AT BUC DOT com>
To: backuppc-users AT lists.sourceforge DOT net
Date: Tue, 24 Jun 2014 15:19:36 -0400
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
BackupPC-users AT lists.sourceforge DOT net
List:    https://lists.sourceforge.net/lists/listinfo/backuppc-users
Wiki:    http://backuppc.wiki.sourceforge.net
Project: http://backuppc.sourceforge.net/

<Prev in Thread] Current Thread [Next in Thread>