mirror of
https://github.com/pgbackrest/pgbackrest.git
synced 2025-03-03 14:52:21 +02:00
* The repo-path option now always refers to the repository where backups and archive are stored, whether local or remote, so the repo-remote-path option has been removed. The new spool-path option can be used to define a location for queueing WAL segments when archiving asynchronously. Otherwise, a local repository is no longer required. * Implemented a new config format which should be far simpler to use. See the User Guide and Configuration Reference for details but for a simple configuration all options can now be placed in the stanza section. Options that are shared between stanzas can be placed in the [global] section. More complex configurations can still make use of command sections though this should be a rare use case. * The default configuration filename is now pgbackrest.conf instead of pg_backrest.conf. This was done for consistency with other naming changes but also to prevent old config files from being loaded accidentally. * The default repository name was changed from /var/lib/backup to /var/lib/pgbackrest. * Lock files are now stored in /tmp/pgbackrest by default. These days /run/pgbackrest would be the preferred location but that would require init scripts which are not part of this release. The lock-path option can be used to configure the lock directory. * Log files are now stored in /var/log/pgbackrest by default and no longer have the date appended so they can be managed with logrotate. The log-path option can be used to configure the lock directory. * Executable filename changed from pg_backrest to pgbackrest.
66 lines
2.2 KiB
Perl
66 lines
2.2 KiB
Perl
####################################################################################################################################
|
|
# VmTest.pm - Vm constants and data
|
|
####################################################################################################################################
|
|
package pgBackRestTest::Common::VmTest;
|
|
|
|
####################################################################################################################################
|
|
# Perl includes
|
|
####################################################################################################################################
|
|
use strict;
|
|
use warnings FATAL => qw(all);
|
|
use Carp qw(confess);
|
|
|
|
use Exporter qw(import);
|
|
our @EXPORT = qw();
|
|
|
|
####################################################################################################################################
|
|
# Valid OS list
|
|
####################################################################################################################################
|
|
use constant OS_CO6 => 'co6';
|
|
push @EXPORT, qw(OS_CO6);
|
|
use constant OS_CO7 => 'co7';
|
|
push @EXPORT, qw(OS_CO7);
|
|
use constant OS_U12 => 'u12';
|
|
push @EXPORT, qw(OS_U12);
|
|
use constant OS_U14 => 'u14';
|
|
push @EXPORT, qw(OS_U14);
|
|
|
|
my $oyVm =
|
|
{
|
|
# CentOS 6
|
|
&OS_CO6 =>
|
|
{
|
|
db => ['9.0', '9.1', '9.2', '9.3', '9.4', '9.5']
|
|
},
|
|
|
|
# CentOS 7
|
|
&OS_CO7 =>
|
|
{
|
|
db => ['9.3', '9.4', '9.5']
|
|
},
|
|
|
|
# Ubuntu 12.04
|
|
&OS_U12 =>
|
|
{
|
|
db => ['8.3', '8.4', '9.0', '9.1', '9.2', '9.3', '9.4', '9.5']
|
|
},
|
|
|
|
# Ubuntu 14.04
|
|
&OS_U14 =>
|
|
{
|
|
db => ['9.0', '9.1', '9.2', '9.3', '9.4', '9.5']
|
|
}
|
|
};
|
|
|
|
####################################################################################################################################
|
|
# vmGet
|
|
####################################################################################################################################
|
|
sub vmGet
|
|
{
|
|
return $oyVm;
|
|
}
|
|
|
|
push @EXPORT, qw(vmGet);
|
|
|
|
1;
|