From f941d7f78244f2be1f9b3f7a3d826feccae993b4 Mon Sep 17 00:00:00 2001 From: WG Dev Date: Sun, 6 Jan 2019 10:46:24 +0100 Subject: [PATCH] fix for #316 - CRITICAL ERROR: bookmarks couldn't be listed for --- syncoid | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/syncoid b/syncoid index d3e678f..b0a8ec8 100755 --- a/syncoid +++ b/syncoid @@ -1316,7 +1316,7 @@ sub getbookmarks() { close FH or $error = 1; if ($error == 1) { - if ($rawbookmarks[0] =~ /invalid type/) { + if ($rawbookmarks[0] =~ /invalid type/ or $rawbookmarks[0] =~ /operation not applicable to datasets of this type/) { # no support for zfs bookmarks, return empty hash return %bookmarks; }