From 35d0e15e8473a5f65534d97084483438a8d0a30a Mon Sep 17 00:00:00 2001 From: Christian Ebner Date: Mon, 10 Jun 2024 11:57:43 +0200 Subject: [PATCH] vzdump: add PBS change detection mode configuration Define the possible modes to be configured in a PBS file change detection mode. Signed-off-by: Christian Ebner --- src/PVE/VZDump/Common.pm | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/PVE/VZDump/Common.pm b/src/PVE/VZDump/Common.pm index 1539444..1996c5b 100644 --- a/src/PVE/VZDump/Common.pm +++ b/src/PVE/VZDump/Common.pm @@ -354,6 +354,13 @@ my $confdesc = { requires => 'storage', optional => 1, }, + 'pbs-change-detection-mode' => { + type => 'string', + description => "EXPERIMENTAL: PBS mode used to detect file changes and switch encoding" + . " format for container backups.", + optional => 1, + enum => [ 'legacy', 'data', 'metadata' ], + }, }; sub get_confdesc {