From c6966f357bd84adeb4d114c50e3852b367bce487 Mon Sep 17 00:00:00 2001 From: Alwin Antreich Date: Mon, 22 Jul 2019 17:11:39 +0200 Subject: [PATCH] pvenode: add public key size & type to cert info Signed-off-by: Alwin Antreich (cherry picked from commit ee3fd393c4721b6c68d7adb47bb498976235d82f) Signed-off-by: Thomas Lamprecht --- PVE/CLI/pvenode.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PVE/CLI/pvenode.pm b/PVE/CLI/pvenode.pm index 1989e8b3..fd3cf52d 100644 --- a/PVE/CLI/pvenode.pm +++ b/PVE/CLI/pvenode.pm @@ -123,7 +123,7 @@ __PACKAGE__->register_method({ my $print_cert_info = sub { my ($schema, $cert, $options) = @_; - my $order = [qw(filename fingerprint subject issuer notbefore notafter san)]; + my $order = [qw(filename fingerprint subject issuer notbefore notafter public-key-type public-key-bits san)]; PVE::CLIFormatter::print_api_result( $cert, $schema, $order, { %$options, noheader => 1, sort_key => 0 }); };