diff --git a/src/PVE/Storage/ZFSPoolPlugin.pm b/src/PVE/Storage/ZFSPoolPlugin.pm index 3669fe15..4abd8c09 100644 --- a/src/PVE/Storage/ZFSPoolPlugin.pm +++ b/src/PVE/Storage/ZFSPoolPlugin.pm @@ -752,7 +752,7 @@ sub volume_export { # For zfs we always create a replication stream (-R) which means the remote # side will always delete non-existing source snapshots. This should work # for all our use cases. - my $cmd = ['zfs', 'send', '-Rpv']; + my $cmd = ['zfs', 'send', '-Rpvc']; if (defined($base_snapshot)) { my $arg = $with_snapshots ? '-I' : '-i'; push @$cmd, $arg, $base_snapshot;