From 543f00bd3ae774389ba99959c8e2a29fd12b153f Mon Sep 17 00:00:00 2001 From: Mirek Kratochvil Date: Sun, 12 Oct 2014 10:23:54 +0200 Subject: [PATCH] use replication streams for sending May exhibit "recursive" behavior, but saves a lot of work when moving zvol disk snapshots and similar stuff. --- zb-pull | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zb-pull b/zb-pull index 1f07ca2..8e856b5 100755 --- a/zb-pull +++ b/zb-pull @@ -53,10 +53,10 @@ fi if [ "$newest_common" = "N/A" ] ; then #do a full send - ssh $ssh_remote "zfs send \"${remote_zfs}@zb-${newest}\"" | zfs recv -F "${local_zfs}" + ssh $ssh_remote "zfs send -R \"${remote_zfs}@zb-${newest}\"" | zfs recv -F "${local_zfs}" exit $? else #do incremental send - ssh $ssh_remote "zfs send -I \"${remote_zfs}@zb-${newest_common}\" \"${remote_zfs}@zb-${newest}\"" | zfs recv -F "${local_zfs}" + ssh $ssh_remote "zfs send -R -I \"${remote_zfs}@zb-${newest_common}\" \"${remote_zfs}@zb-${newest}\"" | zfs recv -F "${local_zfs}" exit $? fi