From 42c6efef30606125fee2de440fe94b3062573003 Mon Sep 17 00:00:00 2001 From: Jim Klimov Date: Wed, 17 Jan 2024 14:56:04 +0000 Subject: [PATCH] lib/ZnapZend/Config.pm: checkBackupSets(): do not ignore src_mbuffer=off [#629] Signed-off-by: Jim Klimov --- lib/ZnapZend/Config.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ZnapZend/Config.pm b/lib/ZnapZend/Config.pm index 018ca9c0..d17a4921 100644 --- a/lib/ZnapZend/Config.pm +++ b/lib/ZnapZend/Config.pm @@ -177,7 +177,7 @@ my $checkBackupSets = sub { } } if ($backupSet->{src_mbuffer}) { - if (!($self->zfs->fileExistsAndExec($backupSet->{src_mbuffer}))) { + if ($backupSet->{src_mbuffer} ne 'off' and !($self->zfs->fileExistsAndExec($backupSet->{src_mbuffer}))) { warn "*** WARNING: executable '$backupSet->{src_mbuffer}' does not exist on source system, will ignore\n\n"; $backupSet->{src_mbuffer} = undef; }