BackupPC-users

[BackupPC-users] Backup aborted (tar:712 Total bytes received: 86681)

2016-05-11 12:20:12
Subject: [BackupPC-users] Backup aborted (tar:712 Total bytes received: 86681)
From: terryls <backuppc-forum AT backupcentral DOT com>
To: backuppc-users AT lists.sourceforge DOT net
Date: Wed, 11 May 2016 09:19:13 -0700
I can't change the status of the post to indicate resolved, but here is what 
resolved my BackupPC Windows client failure:

After making changes to the Smb.pm and Browse.pm files, I have 2 Windows 
servers backing up and 4 in the process of backing up.

The only change I made was that indicated in this post:

https://bugzilla.redhat.com/attachment.cgi?id=1111264&action=diff

Browse.pm  changed this:
From:

if ( !defined($In{num}) && defined(@Backups) && @Backups > 0 ) {

to

if ( !defined($In{num}) && @Backups > 0 ) {

Smb.pm changed this:

From

} elsif ( /^\s*tar: dumped \d+ files/ ) {

to

} elsif ( /^\s*tar: dumped \d+ files/
                || /Total bytes received: \d+/i
          ) {

and inserted this line

|| /^tar:\d+/


 between:

} elsif ( /smb: \\>/

and

|| /^\s*added interface/i

so it reads:


} elsif ( /smb: \\>/
|| /^tar:\d+/
|| /^\s*added interface/i

I hope this speeds up someones resolution.

+----------------------------------------------------------------------
|This was sent by tschmid4 AT utk DOT edu via Backup Central.
|Forward SPAM to abuse AT backupcentral DOT com.
+----------------------------------------------------------------------



------------------------------------------------------------------------------
Mobile security can be enabling, not merely restricting. Employees who
bring their own devices (BYOD) to work are irked by the imposition of MDM
restrictions. Mobile Device Manager Plus allows you to control only the
apps on BYO-devices by containerizing them, leaving personal data untouched!
https://ad.doubleclick.net/ddm/clk/304595813;131938128;j
_______________________________________________
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>
  • [BackupPC-users] Backup aborted (tar:712 Total bytes received: 86681), terryls <=