diff options
author | Christian Hesse <mail@eworm.de> | 2021-05-21 08:31:45 +0200 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2021-05-21 08:31:45 +0200 |
commit | 330bc7fc8b39bebccf3d439acdc3318e4fe6623c (patch) | |
tree | ad41ebd8a4368fafcde3e52e684e5c82c00e4b90 | |
parent | 45dd33c90a8404ee9bd317067fa1f88462c5d907 (diff) |
check-certificates: fix variable name
-rw-r--r-- | check-certificates | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/check-certificates b/check-certificates index a052930..9ddf0e7 100644 --- a/check-certificates +++ b/check-certificates @@ -124,7 +124,7 @@ $WaitFullyConnected; message=("A certificate on " . $Identity . " " . $State . ".\n\n" . \ "Name: " . ($CertVal->"name") . "\n" . \ "CommonName: " . ($CertVal->"common-name") . "\n" . \ - "Private key: " . [ $IfThenElse (($CertNewVal->"private-key") = true) "available" "missing" ] . "\n" . \ + "Private key: " . [ $IfThenElse (($CertVal->"private-key") = true) "available" "missing" ] . "\n" . \ "Fingerprint: " . ($CertVal->"fingerprint") . "\n" . \ "Issuer: " . ($CertVal->"ca") . ([ $ParseKeyValueStore ($CertVal->"issuer") ]->"CN") . "\n" . \ "Validity: " . ($CertVal->"invalid-before") . " to " . ($CertVal->"invalid-after") . "\n" . \ |