diff --git a/PVE/Storage.pm b/PVE/Storage.pm index 122c3e9..aa36bad 100755 --- a/PVE/Storage.pm +++ b/PVE/Storage.pm @@ -37,7 +37,6 @@ use PVE::Storage::ISCSIDirectPlugin; use PVE::Storage::GlusterfsPlugin; use PVE::Storage::ZFSPoolPlugin; use PVE::Storage::ZFSPlugin; -use PVE::Storage::DRBDPlugin; use PVE::Storage::PBSPlugin; # Storage API version. Increment it on changes in storage API interface. @@ -60,7 +59,6 @@ PVE::Storage::ISCSIDirectPlugin->register(); PVE::Storage::GlusterfsPlugin->register(); PVE::Storage::ZFSPoolPlugin->register(); PVE::Storage::ZFSPlugin->register(); -PVE::Storage::DRBDPlugin->register(); PVE::Storage::PBSPlugin->register(); # load third-party plugins diff --git a/PVE/Storage/Makefile b/PVE/Storage/Makefile index 5b8f6e8..91b9238 100644 --- a/PVE/Storage/Makefile +++ b/PVE/Storage/Makefile @@ -11,7 +11,6 @@ SOURCES= \ GlusterfsPlugin.pm \ ZFSPoolPlugin.pm \ ZFSPlugin.pm \ - DRBDPlugin.pm \ PBSPlugin.pm \ LvmThinPlugin.pm