use replication streams for sending
May exhibit "recursive" behavior, but saves a lot of work when moving zvol disk snapshots and similar stuff.
This commit is contained in:
parent
ece4ab99df
commit
543f00bd3a
4
zb-pull
4
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
|
||||
|
|
Loading…
Reference in a new issue