1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2025-01-18 04:58:51 +02:00

Minor fixes.

This commit is contained in:
David Steele 2015-01-11 11:53:03 -05:00
parent 34116d3816
commit 84abcd7d61
2 changed files with 3 additions and 3 deletions

View File

@ -715,11 +715,11 @@ sub BackRestTestBackup_CompareRestore
my $strBackup = shift; my $strBackup = shift;
my $strStanza = shift; my $strStanza = shift;
my $oExpectedManifestRef = shift; my $oExpectedManifestRef = shift;
my $bForce = shift; my $bDelta = shift;
# Create the backup command # Create the backup command
BackRestTestCommon_Execute(BackRestTestCommon_CommandMainGet() . ' --config=' . BackRestTestCommon_DbPathGet() . BackRestTestCommon_Execute(BackRestTestCommon_CommandMainGet() . ' --config=' . BackRestTestCommon_DbPathGet() .
'/pg_backrest.conf ' . (defined($bForce)? '--delta ' : '') . "--stanza=${strStanza} restore"); '/pg_backrest.conf ' . (defined($bDelta)? '--delta ' : '') . "--stanza=${strStanza} restore");
} }
#################################################################################################################################### ####################################################################################################################################

View File

@ -134,7 +134,7 @@ if (!defined($strPgSqlBin))
if (-e "${strVersionPath}/initdb") if (-e "${strVersionPath}/initdb")
{ {
&log(INFO, "found pgsqlbin at ${strVersionPath}\n"); &log(INFO, "found pgsql-bin at ${strVersionPath}\n");
$strPgSqlBin = ${strVersionPath}; $strPgSqlBin = ${strVersionPath};
} }
} }