PVE/Storage/PBSPlugin.pm: start new proxmox backup server plugin

This commit is contained in:
Dietmar Maurer
2020-02-19 13:55:27 +01:00
committed by Thomas Lamprecht
parent 75815bf556
commit 271fe39460
4 changed files with 362 additions and 1 deletions

View File

@ -36,6 +36,7 @@ use PVE::Storage::GlusterfsPlugin;
use PVE::Storage::ZFSPoolPlugin;
use PVE::Storage::ZFSPlugin;
use PVE::Storage::DRBDPlugin;
use PVE::Storage::PBSPlugin;
# Storage API version. Icrement it on changes in storage API interface.
use constant APIVER => 3;
@ -58,6 +59,7 @@ PVE::Storage::GlusterfsPlugin->register();
PVE::Storage::ZFSPoolPlugin->register();
PVE::Storage::ZFSPlugin->register();
PVE::Storage::DRBDPlugin->register();
PVE::Storage::PBSPlugin->register();
# load third-party plugins
if ( -d '/usr/share/perl5/PVE/Storage/Custom' ) {