add lvm thin plugin

This commit is contained in:
Dietmar Maurer
2015-11-09 11:05:57 +01:00
parent 5dca5c7c7e
commit 610798bc2d
3 changed files with 142 additions and 1 deletions

View File

@ -22,6 +22,7 @@ use PVE::RPCEnvironment;
use PVE::Storage::Plugin;
use PVE::Storage::DirPlugin;
use PVE::Storage::LVMPlugin;
use PVE::Storage::LvmThinPlugin;
use PVE::Storage::NFSPlugin;
use PVE::Storage::ISCSIPlugin;
use PVE::Storage::RBDPlugin;
@ -35,6 +36,7 @@ use PVE::Storage::DRBDPlugin;
# load and initialize all plugins
PVE::Storage::DirPlugin->register();
PVE::Storage::LVMPlugin->register();
PVE::Storage::LvmThinPlugin->register();
PVE::Storage::NFSPlugin->register();
PVE::Storage::ISCSIPlugin->register();
PVE::Storage::RBDPlugin->register();