From 9f02df8359553783d541073c349b566357925877 Mon Sep 17 00:00:00 2001 From: Alexandre Derumier Date: Thu, 6 Sep 2012 10:28:04 +0200 Subject: [PATCH] iscsidirect : add volume_snapshot_rollback 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 0267a22..f054a3b 100644 --- a/PVE/Storage/ISCSIDirectPlugin.pm +++ b/PVE/Storage/ISCSIDirectPlugin.pm @@ -198,4 +198,9 @@ sub volume_snapshot { die "volume snapshot is not possible on iscsi device"; } +sub volume_snapshot_rollback { + my ($class, $scfg, $storeid, $volname, $snap) = @_; + die "volume snapshot rollback is not possible on iscsi device"; +} + 1;