diff --git a/PVE/Storage/LVMPlugin.pm b/PVE/Storage/LVMPlugin.pm index d49a2b9..f0dcb4d 100644 --- a/PVE/Storage/LVMPlugin.pm +++ b/PVE/Storage/LVMPlugin.pm @@ -420,4 +420,10 @@ sub volume_resize { return 1; } +sub volume_snapshot { + my ($class, $scfg, $storeid, $volname, $snap, $running) = @_; + + die "lvm snapshot is not implemented"; +} + 1;