diff --git a/build/lib/pgBackRestBuild/Config/Data.pm b/build/lib/pgBackRestBuild/Config/Data.pm index 40185a664..12590905f 100644 --- a/build/lib/pgBackRestBuild/Config/Data.pm +++ b/build/lib/pgBackRestBuild/Config/Data.pm @@ -128,6 +128,8 @@ use constant CFGOPT_CONFIG_INCLUDE_PATH => 'config-i push @EXPORT, qw(CFGOPT_CONFIG_INCLUDE_PATH); use constant CFGOPT_DELTA => 'delta'; push @EXPORT, qw(CFGOPT_DELTA); +use constant CFGOPT_DRYRUN => 'dry-run'; + push @EXPORT, qw(CFGOPT_DRYRUN); use constant CFGOPT_FORCE => 'force'; push @EXPORT, qw(CFGOPT_FORCE); use constant CFGOPT_ONLINE => 'online'; @@ -760,6 +762,16 @@ my %hConfigDefine = &CFGDEF_NEGATE => false, }, + &CFGOPT_DRYRUN => + { + &CFGDEF_TYPE => CFGDEF_TYPE_BOOLEAN, + &CFGDEF_DEFAULT => false, + &CFGDEF_COMMAND => + { + &CFGCMD_EXPIRE => {}, + }, + }, + &CFGOPT_FORCE => { &CFGDEF_TYPE => CFGDEF_TYPE_BOOLEAN, diff --git a/doc/xml/reference.xml b/doc/xml/reference.xml index 1cae3806b..7d8fcd4bf 100644 --- a/doc/xml/reference.xml +++ b/doc/xml/reference.xml @@ -935,6 +935,15 @@ /conf/pgbackrest + + +