Fixed order for remote dataset grab.

This commit is contained in:
Otho 2023-01-16 19:55:20 -05:00
parent a1c0d6f0ae
commit 5c425e4832
Signed by: Otho
GPG Key ID: 16C720CD3BBE21D9

View File

@ -188,8 +188,8 @@ send_latest()
esac
fi
for dataset in $SEND_DATASETS; do
dataset="`echo $dataset|cut -d: -f1`"
remote_dataset="`echo $dataset|cut -d: -f2`"
remote_dataset=`echo $dataset|cut -d: -f2`
dataset=`echo $dataset|cut -d: -f1`
debug "Processing $dataset (remote $remote_dataset)."
origin_snapshot=`get_latest_snapshot $dataset`
if [ $BG_TEST_MODE = "TRUE" ]; then
@ -219,8 +219,8 @@ send_increment()
esac
fi
for dataset in $SEND_DATASETS; do
dataset="`echo $dataset|cut -d: -f1`"
remote_dataset="`echo $dataset|cut -d: -f2`"
remote_dataset=`echo $dataset|cut -d: -f2`
dataset=`echo $dataset|cut -d: -f1`
origin_snapshot=`get_latest_snapshot`
remote_snapshot=`get_latest_remote_snapshot`
if [ $BG_TEST_MODE = "TRUE" ]; then