From 881e6f7b890676b4d2b7347fd13832b203a53a08 Mon Sep 17 00:00:00 2001 From: Edwin Eefting Date: Wed, 13 Nov 2019 12:32:13 +0100 Subject: [PATCH] ignore "skipping snapshot" output when using --progress --- zfs_autobackup | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/zfs_autobackup b/zfs_autobackup index f0f5681..4b570be 100755 --- a/zfs_autobackup +++ b/zfs_autobackup @@ -1160,7 +1160,8 @@ class ZfsNode(ExecuteNode): if (line.find("nvlist version")==0 or line.find("resume token contents")==0 or - len(progress_fields)!=1): + len(progress_fields)!=1) or + line.find("skipping ")==0: #always output for debugging offcourse self.debug("STDERR|> "+line.rstrip())