From 64d97bfaa963c55f7f15b63e5af987f6b6bb87a8 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 --- 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 }); };