[pve-devel] [PATCH 08/20] iscsi : add volume_protect && volume_unprotect

Alexandre Derumier aderumier at odiso.com
Mon Dec 3 14:32:33 CET 2012


we can't protect an iscsi device

Signed-off-by: Alexandre Derumier <aderumier at odiso.com>
---
 PVE/Storage/ISCSIPlugin.pm |   10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/PVE/Storage/ISCSIPlugin.pm b/PVE/Storage/ISCSIPlugin.pm
index 173ca1d..0edef6e 100644
--- a/PVE/Storage/ISCSIPlugin.pm
+++ b/PVE/Storage/ISCSIPlugin.pm
@@ -383,5 +383,15 @@ sub volume_resize {
     die "volume resize is not possible on iscsi device";
 }
 
+sub volume_protect {
+    my ($class, $scfg, $storeid, $volname, $snap) = @_;
+    die "you can't protect an iscsi device";
+}
+
+sub volume_unprotect {
+    my ($class, $scfg, $storeid, $volname, $snap) = @_;
+    die "you can't unprotect an iscsi device";
+}
+
 
 1;
-- 
1.7.10.4




More information about the pve-devel mailing list