BackupPC-users

Re: [BackupPC-users] I received the error "No files dumped for share"

2009-01-08 01:48:16
Subject: Re: [BackupPC-users] I received the error "No files dumped for share"
From: Craig Barratt <cbarratt AT users.sourceforge DOT net>
To: Omar Llorens Crespo Dom nguez <omar AT tsolucio DOT com>
Date: Wed, 7 Jan 2009 22:46:09 -0800
Omar writes:

> $Conf{TarClientCmd} = ' env LC_ALL=C /usr/bin/sudo $tarPath -c -v -f -
> -C $shareName+'
>                     . ' --totals';
> 
> $Conf{TarClientRestoreCmd} = ' env LC_ALL=C /usr/bin/sudo $tarPath -x -p
> --numeric-owner --same-owner'
>                    . ' -v -f - -C $shareName+';

Both of these are wrong - they start with a space.  BackupPC doesn't
know what program to exec.

You need something like:

    $Conf{TarClientCmd} = '/usr/bin/sudo env LC_ALL=C $tarPath -c -v -f - -C 
$shareName+ --totals';

Craig

------------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It is the best place to buy or sell services for
just about anything Open Source.
http://p.sf.net/sfu/Xq1LFB
_______________________________________________
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>