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