[pve-devel] [PATCH 07/20] iscsidirect : add volume_protect && volume_unprotect

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


we can't protect an iscsi volume

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

diff --git a/PVE/Storage/ISCSIDirectPlugin.pm b/PVE/Storage/ISCSIDirectPlugin.pm
index e2490e8..ee9179a 100644
--- a/PVE/Storage/ISCSIDirectPlugin.pm
+++ b/PVE/Storage/ISCSIDirectPlugin.pm
@@ -208,4 +208,14 @@ sub volume_snapshot_delete {
     die "volume snapshot delete 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