mirror of
https://asciireactor.com/o4data/zfs-backup.git
synced 2024-11-24 04:35:05 +00:00
Fixed quotes.
This commit is contained in:
parent
d7642270c6
commit
6e108f6677
@ -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`
|
||||
dataset="`echo $dataset|cut -d':' -f1`"
|
||||
remote_dataset="`echo $dataset|cut -d':' -f2`"
|
||||
debug "dataset: $dataset"
|
||||
debug "remote dataset: $remote_dataset"
|
||||
origin_snapshot=`get_latest_snapshot $dataset`
|
||||
@ -220,8 +220,8 @@ send_increment()
|
||||
esac
|
||||
fi
|
||||
for dataset in $SEND_DATASETS; do
|
||||
dataset=`echo $dataset|cut -d':' -f1`
|
||||
remote_dataset=`echo $dataset|cut -d':' -f2`
|
||||
dataset="`echo $dataset|cut -d':' -f1`"
|
||||
remote_dataset="`echo $dataset|cut -d':' -f2`"
|
||||
origin_snapshot=`get_latest_snapshot`
|
||||
remote_snapshot=`get_latest_remote_snapshot`
|
||||
if [ $BG_TEST_MODE = "TRUE" ]; then
|
||||
|
Loading…
Reference in New Issue
Block a user