Exec the zfs send/recv commands.

This commit is contained in:
Tom Alexander
2023-05-03 00:15:33 -04:00
parent a4e75f98d7
commit 34a456c9b5
4 changed files with 2 additions and 4 deletions

View File

@@ -7,6 +7,6 @@ DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
# -s if the stream is interrupted, save the partial stream. The stream can then be resumed by doing a zfs send -t token where token is the receive_resume_token prop on the dataset we received into.
# -u Do not mount the filesystem we are receiving. We can always mount afterwards but this avoids issues with streams with mountpoints to places like /
zfs recv -s -u
exec zfs recv -s -u "${@}"
# To delete an interrupted recv, run `zfs receive -A dataset`

View File

@@ -7,7 +7,7 @@ DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
# TODO: Do we want --backup ?
# We get --props automatically from --replicate
zfs send --compressed --replicate --large-block --embed --verbose "${@}"
exec zfs send --compressed --replicate --large-block --embed --verbose "${@}"
# On zfs recv side, may want to pass `-s` to make the stream resumable.