From 10e47fc8bb3c8d4eb6542f484fc1ae65e2ca7441 Mon Sep 17 00:00:00 2001 From: Maximiliano Sandoval Date: Fri, 29 Aug 2025 14:47:37 +0200 Subject: [PATCH] pvesm: print units in 'status' subcommand table headings The units used are not documented in the man page. Signed-off-by: Maximiliano Sandoval Link: https://lore.proxmox.com/20250829124738.412902-1-m.sandoval@proxmox.com [FE: improve commit title] Signed-off-by: Fiona Ebner --- src/PVE/CLI/pvesm.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PVE/CLI/pvesm.pm b/src/PVE/CLI/pvesm.pm index 860e46f..06bc4c9 100755 --- a/src/PVE/CLI/pvesm.pm +++ b/src/PVE/CLI/pvesm.pm @@ -232,7 +232,7 @@ my $print_status = sub { $maxlen += 1; printf "%-${maxlen}s %10s %10s %15s %15s %15s %8s\n", 'Name', 'Type', - 'Status', 'Total', 'Used', 'Available', '%'; + 'Status', 'Total (KiB)', 'Used (KiB)', 'Available (KiB)', '%'; foreach my $res (sort { $a->{storage} cmp $b->{storage} } @$res) { my $storeid = $res->{storage};