From fb925d656a5d20ebdfbc5de9b5c0f1ba674ed6eb Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Tue, 11 May 2021 14:26:15 +0200 Subject: [PATCH] report: whitespace cleanup Signed-off-by: Thomas Lamprecht --- PVE/Report.pm | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/PVE/Report.pm b/PVE/Report.pm index e89edbb0..b3373832 100644 --- a/PVE/Report.pm +++ b/PVE/Report.pm @@ -77,8 +77,13 @@ my $init_report_cmds = sub { ], }; - push @{$report_def->{volumes}}, 'zpool status', 'zpool list -v', 'zfs list' - if cmd_exists('zfs'); + if (cmd_exists('zfs')) { + push @{$report_def->{volumes}}, + 'zpool status', + 'zpool list -v', + 'zfs list', + ; + } if (-e '/etc/ceph/ceph.conf') { push @{$report_def->{volumes}}, @@ -97,7 +102,8 @@ my $init_report_cmds = sub { push @{$report_def->{disks}}, 'cat /etc/multipath.conf', 'cat /etc/multipath/wwids', - 'multipath -ll'; + 'multipath -ll', + ; } return $report_def;