- new version of burnArchive that should work both on QC and on AGI
[BackupPC.git] / bin / BackupPC_burnArchiveCLI
index f8845d4..d4fc321 100755 (executable)
@@ -1,7 +1,7 @@
-#!/usr/bin/perl
+#!/usr/local/bin/perl
 
 use strict;
-use lib "__INSTALLDIR__/lib";
+use lib "/data/backuppc-agi//lib";
 
 use DBI;
 use BackupPC::Lib;
@@ -12,7 +12,7 @@ use Term::Menus;
 use File::Which;
 use File::Path;
 use Filesys::Df;
-
+use Cwd qw/abs_path/;
 use Data::Dumper;
 
 my $debug = 0;
@@ -33,6 +33,9 @@ $conf_bin->{'eject'} = $Conf{ejectBin} || die "Need ejectBin in config.pl\n";
 my $eject_opts = $Conf{ejectOpts} || die "Need ejectOpts in config.pl\n";
 $conf_bin->{'mkisofs'} = $Conf{mkisofsBin} || die "Need mkisofsBin in config.pl\n";
 
+my $path = abs_path($0);
+$path =~ s#/[^/]+$#/#;
+my $tarIncCreate = $path .= 'BackupPC_tarIncCreate';
 
 my $bin;
 foreach my $c (qw/cdrecord eject mkisofs/) {
@@ -394,6 +397,9 @@ foreach my $copy_nr ( 1 .. $copies ) {
                        # this part
                        my $p = {
                                filename => BackupPC::SearchLib::getGzipName($row->{'host'}, $row->{'share'}, $row->{'num'}),
+                               host => $row->{'host'},
+                               share => $row->{'share'},
+                               num => $row->{'num'}
                        };
                        foreach my $fld (qw/part_nr md5/) {
                                $p->{$fld} = $row->{$fld} || die "missing $fld in row!";
@@ -469,8 +475,32 @@ foreach my $copy_nr ( 1 .. $copies ) {
                                        }
                                        $rel_path .= '.tar.gz';
 
-                                       skip "can't find increment $rel_path: $!" unless (-r "$tar_dir/$rel_path");
+                                       
+                                       unless (-r "$tar_dir/$rel_path") {
+                                               print "WARNING: can't find increment $rel_path , trying to recreate it using BackupPC_tarIncCreate...\n";
+                                               my $host = $p->{host};
+                                               my $share = $p->{share};
+                                               my $dump = $p->{num};
+                                               my $currUser = getlogin();
+                                               my $otherUser = "";
+                                               if ($currUser eq "agi") {
+                                                       $otherUser = "backuppc-agi";
+                                               } elsif ($currUser eq "qc") {
+                                                       $otherUser = "backuppc-qc";
+                                               }
+                                               if ($otherUser ne "") {
+                                                       my $cmd = "sudo -u $otherUser ".$tarIncCreate. " -h $host -s $share -n $dump";
+                                                       print "$cmd ";
+                                                       if (system($cmd) != 0) {
+                                                               print " FAILED.\n";
+                                                       } else {
+                                                               print " done.\n";
+                                               }
+                                       }       
+                                       }
 
+                                       skip "can't find increment $rel_path, recreateing obviously did not work: $!" unless (-r "$tar_dir/$rel_path");
+                                       
                                        add_symlink("$tar_dir/$rel_path", "$stage/$rel_path");
 
                                        my $md5sum = $p->{md5} || die "no md5 in part ", Dumper($p);
@@ -509,7 +539,7 @@ foreach my $copy_nr ( 1 .. $copies ) {
 
                        } else {
                                $iso_size = (stat($iso_file))[7];
-                               print "ISO $iso_file allready exists [$iso_size bytes]\n";
+                               print "ISO $iso_file already exists [$iso_size bytes]\n";
                        }
 
                        print "\nREADY TO BURN MEDIA $disk_name copy $copy_nr\n\nPlease insert blank media and press ENTER\n\n";