1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2025-11-29 22:28:02 +02:00

Move backup modules into Backup directory.

This commit is contained in:
David Steele
2017-05-15 16:01:00 -04:00
parent 2a23157bf2
commit 5296747271
37 changed files with 1371 additions and 1370 deletions

View File

@@ -15,7 +15,7 @@ use English '-no_match_vars';
use File::Basename qw(dirname);
use Storable qw(dclone);
use pgBackRest::BackupInfo;
use pgBackRest::Backup::Info;
use pgBackRest::Common::Exception;
use pgBackRest::Common::Lock;
use pgBackRest::Common::Log;
@@ -79,7 +79,7 @@ sub run
################################################################################################################################
if ($self->begin("BackupInfo::confirmDb()"))
{
my $oBackupInfo = new pgBackRest::BackupInfo($self->{strBackupPath}, false, false);
my $oBackupInfo = new pgBackRest::Backup::Info($self->{strBackupPath}, false, false);
$oBackupInfo->create(PG_VERSION_93, WAL_VERSION_93_SYS_ID, '937', '201306121', true);
my $strBackupLabel = "20170403-175647F";

View File

@@ -13,7 +13,7 @@ use Carp qw(confess);
use File::Basename qw(dirname);
use pgBackRest::BackupCommon;
use pgBackRest::Backup::Common;
use pgBackRest::Common::Exception;
use pgBackRest::Common::Log;
use pgBackRest::Common::String;