From ec409fb48bbf1a936dca27528d1425b06bb89903 Mon Sep 17 00:00:00 2001 From: Alexandre Derumier Date: Thu, 6 Sep 2012 10:27:57 +0200 Subject: [PATCH] iscsidirect : add volume_snapshot Signed-off-by: Alexandre Derumier --- PVE/Storage/ISCSIDirectPlugin.pm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/PVE/Storage/ISCSIDirectPlugin.pm b/PVE/Storage/ISCSIDirectPlugin.pm index 82c6879..0267a22 100644 --- a/PVE/Storage/ISCSIDirectPlugin.pm +++ b/PVE/Storage/ISCSIDirectPlugin.pm @@ -193,4 +193,9 @@ sub volume_resize { die "volume resize is not possible on iscsi device"; } +sub volume_snapshot { + my ($class, $scfg, $storeid, $volname, $snap, $running) = @_; + die "volume snapshot is not possible on iscsi device"; +} + 1;