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

Added check command.

The check command validates that pgBackRest is configured correctly for archiving and backups.

Contributed by Cynthia Shang.
This commit is contained in:
Cynthia Shang
2016-06-12 09:13:46 -04:00
committed by David Steele
parent 7c9eaf7210
commit 7e45ed8366
16 changed files with 546 additions and 58 deletions

View File

@@ -17,6 +17,12 @@ use Time::HiRes qw(gettimeofday usleep);
use lib dirname($0) . '/../lib';
use pgBackRest::Common::Log;
####################################################################################################################################
# Wait constants
####################################################################################################################################
use constant WAIT_TIME_MINIMUM => .1;
push @EXPORT, qw(WAIT_TIME_MINIMUM);
####################################################################################################################################
# waitRemainder
####################################################################################################################################