Register CIFSPlugin in the storage plugin system.

This commit is contained in:
Wolfgang Link
2018-03-16 10:22:55 +01:00
committed by Dietmar Maurer
parent 455f5e1f79
commit d787523984
2 changed files with 14 additions and 2 deletions

View File

@ -25,6 +25,7 @@ use PVE::Storage::DirPlugin;
use PVE::Storage::LVMPlugin;
use PVE::Storage::LvmThinPlugin;
use PVE::Storage::NFSPlugin;
use PVE::Storage::CIFSPlugin;
use PVE::Storage::ISCSIPlugin;
use PVE::Storage::RBDPlugin;
use PVE::Storage::SheepdogPlugin;
@ -42,6 +43,7 @@ PVE::Storage::DirPlugin->register();
PVE::Storage::LVMPlugin->register();
PVE::Storage::LvmThinPlugin->register();
PVE::Storage::NFSPlugin->register();
PVE::Storage::CIFSPlugin->register();
PVE::Storage::ISCSIPlugin->register();
PVE::Storage::RBDPlugin->register();
PVE::Storage::SheepdogPlugin->register();