From 662a87e559d41fcbb65489a4315833a8d042031d Mon Sep 17 00:00:00 2001 From: Aaron Lauterer Date: Mon, 21 Dec 2020 16:13:49 +0100 Subject: [PATCH] pvereport: fix multipath inclusion we now push it to the correct hash if it is installed Signed-off-by: Aaron Lauterer --- PVE/Report.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/PVE/Report.pm b/PVE/Report.pm index a4a3d779..5ee3453d 100644 --- a/PVE/Report.pm +++ b/PVE/Report.pm @@ -79,7 +79,8 @@ my $init_report_cmds = sub { push @{$report_def->{volumes}}, 'ceph status', 'ceph osd status', 'ceph df', 'pveceph status', 'pveceph pool ls'; } - push @{$report_def->{disk}}, 'multipath -ll', 'multipath -v3' if cmd_exists('multipath'); + push @{$report_def->{disks}}, 'multipath -ll', 'multipath -v3' + if cmd_exists('multipath'); return $report_def; };