mirror of
https://git.eworm.de/cgit/routeros-scripts
synced 2025-07-22 11:54:44 +02:00
check-certificates: catch and ignore import error
Hmm... 🤨 When was that runtime error introduced? I *think* it
worked before.
This commit is contained in:
parent
53b13b295a
commit
f6c2225f68
1 changed files with 6 additions and 4 deletions
|
@ -59,10 +59,12 @@
|
||||||
|
|
||||||
:local DecryptionFailed true;
|
:local DecryptionFailed true;
|
||||||
:foreach PassPhrase in=$CertRenewPass do={
|
:foreach PassPhrase in=$CertRenewPass do={
|
||||||
:local Result [ /certificate/import file-name=$CertFileName passphrase=$PassPhrase as-value ];
|
:do {
|
||||||
:if ($Result->"decryption-failures" = 0) do={
|
:local Result [ /certificate/import file-name=$CertFileName passphrase=$PassPhrase as-value ];
|
||||||
:set DecryptionFailed false;
|
:if ($Result->"decryption-failures" = 0) do={
|
||||||
}
|
:set DecryptionFailed false;
|
||||||
|
}
|
||||||
|
} on-error={ }
|
||||||
}
|
}
|
||||||
$RmFile $CertFileName;
|
$RmFile $CertFileName;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue