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:
Mirek Kratochvil 2014-10-12 10:23:54 +02:00
parent ece4ab99df
commit 543f00bd3a

View file

@ -53,10 +53,10 @@ fi
if [ "$newest_common" = "N/A" ] ; then if [ "$newest_common" = "N/A" ] ; then
#do a full send #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 $? exit $?
else else
#do incremental send #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 $? exit $?
fi fi