Lets try again, too many extra commas :)
What about something like this in your host config?
$Conf{RsyncShareName} = ['/your_actual_share', '/mnt/jj/share/docs'];
$Conf{BackupFilesExclude} = {
'/your_actual_share' => [
'/mnt/',
'/other_stuff_to_exclude'
]
};
Hope it helps, may be a
What about something like this?
$Conf{RsyncShareName} = ['/your_actual_share', '/mnt/jj/share/docs'];
$Conf{BackupFilesExclude} = {
'/your_actual_share' => [
'/mnt/',
'/other_stuff_to_exclude',
],
};
Hope it helps, may be a better way but I don't see it.
Luis A. Paulo
On Sat, Jan 23
Been reading through the backuppc docs and not quite sure how to do this.
The system I'm backing up is a linux box and it's being synced with rsync.
Could you give me an example of what this would look like in the config
file?
Thanks!
On Fri, Jan 22, 2010 at 10:10 PM, Luis Paulo wrote:
> You ma
You may add a new share just for /mnt/jj/share/docs. and leave the rest as
it is.
On Sat, Jan 23, 2010 at 2:53 AM, Kiko Man wrote:
> I have my /mnt directory specified in my BackupFilesExclude list, but there
> is one directory under /mnt (/mnt/jj/share/docs) that I would like to
> backup. Is t
I have my /mnt directory specified in my BackupFilesExclude list, but there
is one directory under /mnt (/mnt/jj/share/docs) that I would like to
backup. Is there an easy way to specify this behavior?
If I have to list out everything except that directory the list will be
large (20+). I done som