ZFSDirPlugin: new plugin for local zfs storage

We also want to use this as base class for ZFSPlugin, to increase
code sharing.
This commit is contained in:
Dietmar Maurer
2015-01-22 07:54:10 +01:00
parent 0a42c9db92
commit 5bb8e01076
4 changed files with 68 additions and 30 deletions

View File

@ -27,6 +27,7 @@ use PVE::Storage::RBDPlugin;
use PVE::Storage::SheepdogPlugin;
use PVE::Storage::ISCSIDirectPlugin;
use PVE::Storage::GlusterfsPlugin;
use PVE::Storage::ZFSDirPlugin;
use PVE::Storage::ZFSPlugin;
# load and initialize all plugins
@ -38,6 +39,7 @@ PVE::Storage::RBDPlugin->register();
PVE::Storage::SheepdogPlugin->register();
PVE::Storage::ISCSIDirectPlugin->register();
PVE::Storage::GlusterfsPlugin->register();
PVE::Storage::ZFSDirPlugin->register();
PVE::Storage::ZFSPlugin->register();
PVE::Storage::Plugin->init();