diff --git a/PVE/CLI/pve5to6.pm b/PVE/CLI/pve5to6.pm index e73e2b62..3c728e29 100644 --- a/PVE/CLI/pve5to6.pm +++ b/PVE/CLI/pve5to6.pm @@ -414,6 +414,11 @@ __PACKAGE__->register_method ({ check_misc(); print_header("SUMMARY"); + + my $total = 0; + $total += $_ for values %$counters; + + print "TOTAL: $total\n"; print colored("PASSED: $counters->{pass}\n", 'green'); print "SKIPPED: $counters->{skip}\n"; print colored("WARNINGS: $counters->{warn}\n", 'yellow');