BackupPC-users

Re: [BackupPC-users] BackupPC Aborts Backup at 8GB on F23

2016-03-03 21:01:24
Subject: Re: [BackupPC-users] BackupPC Aborts Backup at 8GB on F23
From: Christophe Gouinaud <gouinaud AT free DOT fr>
To: backuppc-users AT lists.sourceforge DOT net
Date: Fri, 4 Mar 2016 01:49:51 +0000 (UTC)
Hello,

I got same problem using backuppc 3.3.1 an smbclient 4.3.5.

New version of samba change output to 
  "tar: XXXX Total bytes received: XXXX " 
from "tar: dumped ZZZZ files".

So I modify  Smb.pm at line 233 as follow :
----------------------------------------------------
        } elsif ( /^\s*tar: dumped \d+ files/ ) {
            $t->{xferOK} = 1;
            $t->{XferLOG}->write(\"$_\n") if ( $t->{logLevel} >= 0 );
#Changed by gouinaud
        } elsif ( /^\s*tar:\d+  Total bytes received: \d+/ ) {
            $t->{xferOK} = 1;
            $t->{XferLOG}->write(\"$_\n") if ( $t->{logLevel} >= 0 );
#end
…

in config.pl file i modify  BackupZeroFilesIsFatal like this :

$Conf{BackupZeroFilesIsFatal} = 0;

This avoid the bug on saving but i don't try  to restore files 
by smb xfer method.

I hope that help you.

C. Gouinaud


------------------------------------------------------------------------------
Site24x7 APM Insight: Get Deep Visibility into Application Performance
APM + Mobile APM + RUM: Monitor 3 App instances at just $35/Month
Monitor end-to-end web transactions and take corrective actions now
Troubleshoot faster and improve end-user experience. Signup Now!
http://pubads.g.doubleclick.net/gampad/clk?id=272487151&iu=/4140
_______________________________________________
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>