fix #3354: support notes on ceph backups

use DirPlugin's get/update_volume_notes implementation (which all the
other supported file systems use)

Signed-off-by: Dylan Whyte <d.whyte@proxmox.com>
This commit is contained in:
Dylan Whyte
2021-03-19 14:58:15 +01:00
committed by Thomas Lamprecht
parent 061c7e5e3d
commit 2bce96c513

View File

@ -226,4 +226,14 @@ sub deactivate_storage {
}
}
sub get_volume_notes {
my $class = shift;
PVE::Storage::DirPlugin::get_volume_notes($class, @_);
}
sub update_volume_notes {
my $class = shift;
PVE::Storage::DirPlugin::update_volume_notes($class, @_);
}
1;