[pve-devel] [PATCH storage v2 1/3] add select_existing to plugindata for iscsi(direct)

Dominik Csapak d.csapak at proxmox.com
Fri Nov 10 14:49:17 CET 2017


this will be used in the gui, for determining if we need to select
something from the storage when using for an image

Signed-off-by: Dominik Csapak <d.csapak at proxmox.com>
---
changes since v1:
* renamed select to select_existing
 PVE/Storage/ISCSIDirectPlugin.pm | 3 ++-
 PVE/Storage/ISCSIPlugin.pm       | 1 +
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/PVE/Storage/ISCSIDirectPlugin.pm b/PVE/Storage/ISCSIDirectPlugin.pm
index f0c6c53..792d866 100644
--- a/PVE/Storage/ISCSIDirectPlugin.pm
+++ b/PVE/Storage/ISCSIDirectPlugin.pm
@@ -56,7 +56,8 @@ sub type {
 
 sub plugindata {
     return {
-        content => [ {images => 1, none => 1}, { images => 1 }],
+	content => [ {images => 1, none => 1}, { images => 1 }],
+	select_existing => 1,
     };
 }
 
diff --git a/PVE/Storage/ISCSIPlugin.pm b/PVE/Storage/ISCSIPlugin.pm
index aef8675..04b5172 100644
--- a/PVE/Storage/ISCSIPlugin.pm
+++ b/PVE/Storage/ISCSIPlugin.pm
@@ -237,6 +237,7 @@ sub type {
 sub plugindata {
     return {
 	content => [ {images => 1, none => 1}, { images => 1 }],
+	select_existing => 1,
     };
 }
 
-- 
2.11.0





More information about the pve-devel mailing list