From 866165541434d0760e501fece123ed7aaf269fee Mon Sep 17 00:00:00 2001 From: Dietmar Maurer Date: Tue, 17 Jul 2012 12:57:44 +0200 Subject: [PATCH] register all plugins --- PVE/Storage.pm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/PVE/Storage.pm b/PVE/Storage.pm index aee37c8..c86ce0c 100755 --- a/PVE/Storage.pm +++ b/PVE/Storage.pm @@ -23,6 +23,8 @@ use PVE::Storage::NFSPlugin; use PVE::Storage::ISCSIPlugin; use PVE::Storage::RBDPlugin; use PVE::Storage::SheepdogPlugin; +use PVE::Storage::ISCSIDirectPlugin; +use PVE::Storage::NexentaPlugin; # load and initialize all plugins PVE::Storage::DirPlugin->register(); @@ -31,6 +33,8 @@ PVE::Storage::NFSPlugin->register(); PVE::Storage::ISCSIPlugin->register(); PVE::Storage::RBDPlugin->register(); PVE::Storage::SheepdogPlugin->register(); +PVE::Storage::ISCSIDirectPlugin->register(); +PVE::Storage::NexentaPlugin->register(); PVE::Storage::Plugin->init(); my $UDEVADM = '/sbin/udevadm';