From 4dc4bdbba57db93b5659f74871b16d42976ba2f5 Mon Sep 17 00:00:00 2001 From: Edwin Eefting Date: Sun, 17 May 2020 18:19:32 +0200 Subject: [PATCH] travis test without any zfs send options --- bin/zfs-autobackup | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/bin/zfs-autobackup b/bin/zfs-autobackup index 1bee9b2..714e936 100755 --- a/bin/zfs-autobackup +++ b/bin/zfs-autobackup @@ -854,19 +854,19 @@ class ZfsDataset(): cmd.extend(["zfs", "send", ]) - #all kind of performance options: - if "-L" in self.zfs_node.supported_send_options: - cmd.append("-L") # large block support + # #all kind of performance options: + # if "-L" in self.zfs_node.supported_send_options: + # cmd.append("-L") # large block support - if "-e" in self.zfs_node.supported_send_options: - cmd.append("-e") # WRITE_EMBEDDED, more compact stream + # if "-e" in self.zfs_node.supported_send_options: + # cmd.append("-e") # WRITE_EMBEDDED, more compact stream - if "-c" in self.zfs_node.supported_send_options: - cmd.append("-c") # use compressed WRITE records + # if "-c" in self.zfs_node.supported_send_options: + # cmd.append("-c") # use compressed WRITE records - if not resume: - if "-D" in self.zfs_node.supported_send_options: - cmd.append("-D") # dedupped stream, sends less duplicate data + # if not resume: + # if "-D" in self.zfs_node.supported_send_options: + # cmd.append("-D") # dedupped stream, sends less duplicate data #raw? (for encryption) if raw: