aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--global-functions8
1 files changed, 4 insertions, 4 deletions
diff --git a/global-functions b/global-functions
index 796bd0e..05b5093 100644
--- a/global-functions
+++ b/global-functions
@@ -130,16 +130,16 @@
$CertificateDownload $CommonName;
}
- :local CertVal [ / certificate get [ find where common-name=$CommonName ] ];
- :local Issuer ([ $ParseKeyValueStore ($CertVal->"issuer") ]->"CN");
- :while ($Issuer != $CertVal->"common-name") do={
+ :local CertVal;
+ :local Issuer $CommonName;
+ :do {
:if ([ / certificate print count-only where common-name=$Issuer ] = 0) do={
:log info ("Certificate chain for \"" . $CommonName . "\" is incomplete, missing \"" . $Issuer . "\".");
$CertificateDownload $CommonName;
}
:set CertVal [ / certificate get [ find where common-name=$Issuer ] ];
:set Issuer ([ $ParseKeyValueStore ($CertVal->"issuer") ]->"CN");
- }
+ } while=($Issuer != $CertVal->"common-name");
}
# send notification via e-mail