From 852a55f7d2e48b74eaa0cca8e72b3a4d141cec81 Mon Sep 17 00:00:00 2001 From: Alexandre Derumier Date: Thu, 27 Dec 2012 16:07:19 +0100 Subject: [PATCH] iscsi : has_feature Signed-off-by: Alexandre Derumier --- PVE/Storage/ISCSIPlugin.pm | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/PVE/Storage/ISCSIPlugin.pm b/PVE/Storage/ISCSIPlugin.pm index 173ca1d..ac8384b 100644 --- a/PVE/Storage/ISCSIPlugin.pm +++ b/PVE/Storage/ISCSIPlugin.pm @@ -383,5 +383,11 @@ sub volume_resize { die "volume resize is not possible on iscsi device"; } +sub volume_has_feature { + my ($class, $scfg, $feature, $storeid, $volname, $snapname, $running) = @_; + + return undef; +} + 1;