From 2bce96c51375ca7497ef26563e4eed9a94f53a8a Mon Sep 17 00:00:00 2001 From: Dylan Whyte Date: Fri, 19 Mar 2021 14:58:15 +0100 Subject: [PATCH] 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 --- PVE/Storage/CephFSPlugin.pm | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/PVE/Storage/CephFSPlugin.pm b/PVE/Storage/CephFSPlugin.pm index 8eb7c70..480dc57 100644 --- a/PVE/Storage/CephFSPlugin.pm +++ b/PVE/Storage/CephFSPlugin.pm @@ -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;