From 4f4f94801d1448c241e39e6685603444f93bd377 Mon Sep 17 00:00:00 2001 From: Alexandre Derumier Date: Wed, 6 Jun 2012 07:10:49 +0200 Subject: [PATCH] rbd : set shared as default Signed-off-by: Alexandre Derumier --- PVE/Storage/Plugin.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PVE/Storage/Plugin.pm b/PVE/Storage/Plugin.pm index 71ed6a1..88d98bb 100644 --- a/PVE/Storage/Plugin.pm +++ b/PVE/Storage/Plugin.pm @@ -300,7 +300,7 @@ sub parse_config { $d->{content} = $def->{content}->[1] if !$d->{content}; } - if ($type eq 'iscsi' || $type eq 'nfs') { + if ($type eq 'iscsi' || $type eq 'nfs' || $type eq 'rbd' ) { $d->{shared} = 1; } }