]> git.proxmox.com Git - pve-storage.git/commitdiff
fix #3354: support notes on ceph backups
authorDylan Whyte <d.whyte@proxmox.com>
Fri, 19 Mar 2021 13:58:15 +0000 (14:58 +0100)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Wed, 31 Mar 2021 08:22:52 +0000 (10:22 +0200)
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>
PVE/Storage/CephFSPlugin.pm

index 8eb7c70bc4086b6eff4d50039ce248402cd53c86..480dc57727d187578b940466a815f1118eb9226f 100644 (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;