Philippe writes:

> I try to backup localhost 
> 
> localhost.pl
> ~~~~~~
> $Conf{XferMethod} = 'tar';
> 
> $Conf{TarShareName} = ['/etc','/home'];
> #$Conf{TarShareName} = ['/etc'];
> 
> $Conf{TarClientCmd} = '/usr/bin/sudo LANG=C $tarPath -c -v -f - -C 
> $shareName+ --totals';
> $Conf{TarClientRestoreCmd} = '/usr/bin/sudo LANG=C  $tarPath -x -v -f - -C 
> $shareName+ --totals';

You need to use "env LANG=C" or "env LC_ALL=C":

    $Conf{TarClientRestoreCmd} = '/usr/bin/sudo env LANG=C  $tarPath -x -v -f - 
-C $shareName+ --totals';

Craig

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
BackupPC-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/backuppc-users
http://backuppc.sourceforge.net/

Reply via email to