1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2025-07-15 01:04:37 +02:00

Move configuration definition to src/build/config/config.yaml.

Moving to YAML allows the configuration data to be read by C programs.

Also go back to using YAML::XS since it is the only implementation that has proper boolean support.
This commit is contained in:
David Steele
2021-03-08 16:01:05 -05:00
parent 1dbb3bf50b
commit fe4ba455ed
13 changed files with 2067 additions and 3288 deletions

View File

@ -27,8 +27,8 @@ sub codeCountScan
my $strBasePath = shift;
# Load YAML
require YAML::Any;
YAML::Any->import(qw(Load Dump));
require YAML::XS;
YAML::XS->import(qw(Load Dump));
my $hCodeCount = {};