From e2b9e36f488af16a827f97fa699db12c91022ca5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabian=20Gr=C3=BCnbichler?= Date: Tue, 22 Apr 2025 10:56:15 +0200 Subject: [PATCH] rbd: remove no longer used rados_cmd helper MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit all librados interaction is now via our XS binding, the last usage was removed in 41aacc6cdeea9b0c8007cbfb280acf827932c3d6 Signed-off-by: Fabian Grünbichler Reviewed-By: Aaron Lauterer Tested-By: Aaron Lauterer --- src/PVE/Storage/RBDPlugin.pm | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/PVE/Storage/RBDPlugin.pm b/src/PVE/Storage/RBDPlugin.pm index c78db00..162c016 100644 --- a/src/PVE/Storage/RBDPlugin.pm +++ b/src/PVE/Storage/RBDPlugin.pm @@ -124,12 +124,6 @@ my $rbd_cmd = sub { return $build_cmd->('/usr/bin/rbd', $scfg, $storeid, $op, @options); }; -my $rados_cmd = sub { - my ($scfg, $storeid, $op, @options) = @_; - - return $build_cmd->('/usr/bin/rados', $scfg, $storeid, $op, @options); -}; - # needed for volumes created using ceph jewel (or higher) my $krbd_feature_update = sub { my ($scfg, $storeid, $name) = @_;