It is more a understanding question : the
As a practical example: I have two zfs filesystems ( send/source & recv/target ) and 6 snapshots named a-f in the following setup
I do a kind of
man zfs says under zfs send -RAs a non-native speaker I have difficulties to understand, what is destroyed: the snap shot and filesystem on the sending side or on the receiving side ?... If the -F flag is specified when this stream is received, snapshots and file systems that do not exist on the sending side are destroyed.
As a practical example: I have two zfs filesystems ( send/source & recv/target ) and 6 snapshots named a-f in the following setup
| send/source@a | |
| recv/target@b | |
| send/source@c | recv/target@c |
| send/source@d | |
| send/source@e | |
| send/source@f |
I do a kind of
zfs send -R -I @a send/source@f | zfs recv -F recv/target What will be the result ? Will recv/target@b be deleted or all snapshots on send/source that are not existing on recv/target ?