]> git.proxmox.com Git - pve-storage.git/blobdiff - PVE/Storage/Plugin.pm
Include new storage function volume_send.
[pve-storage.git] / PVE / Storage / Plugin.pm
index 31b8541dc53134007c6bf0b2344b3f3dd4a2c427..d0df1f98b1d267a55012e668c2987d8c52464a29 100644 (file)
@@ -697,6 +697,14 @@ sub volume_snapshot {
     return undef;
 }
 
+sub volume_send {
+    my ($class, $scfg, $storeid, $volname, $ip, $snap,
+       $incremental_snap, $verbose, $limit, $target_path) = @_;
+
+    # implement in subclass
+    die "Volume_send is not implemented for $class";
+}
+
 sub volume_rollback_is_possible {
     my ($class, $scfg, $storeid, $volname, $snap) = @_;