--- trunk/bin/BackupPC_tarIncCreate 2005/12/12 16:07:27 254 +++ trunk/bin/BackupPC_tarIncCreate 2005/12/12 20:59:55 257 @@ -199,7 +199,6 @@ # my $max_file_size = $Conf{'MaxArchiveFileSize'} || die "problem with MaxArchiveFileSize parametar"; -$max_file_size *= 1024; my $tar_dir = $Conf{InstallDir}.'/'.$Conf{GzipTempDir}; die "problem with $tar_dir, check GzipTempDir in configuration\n" unless (-d $tar_dir && -w $tar_dir); @@ -223,6 +222,15 @@ my ($backup_id) = $sth->fetchrow_array; $sth->finish; + +# delete exising backup_parts +my $sth_delete_backup_parts = $dbh->prepare(qq{ + delete from backup_parts + where backup_id = ? +}); +$sth_delete_backup_parts->execute($backup_id); + + print STDERR "backup_id: $backup_id working dir: $tar_dir, max uncompressed size $max_file_size bytes, tar $tar_file\n" if ($opts{d}); if (-e $tar_path_final) {