mirror of
https://git.eworm.de/cgit/routeros-scripts
synced 2025-08-07 11:44:45 +02:00
check-certificates: drop main function, use :do with on-error
This commit is contained in:
parent
78f65ead59
commit
b1e37c2734
1 changed files with 4 additions and 6 deletions
|
@ -11,8 +11,8 @@
|
||||||
:global GlobalFunctionsReady;
|
:global GlobalFunctionsReady;
|
||||||
:while ($GlobalFunctionsReady != true) do={ :delay 500ms; }
|
:while ($GlobalFunctionsReady != true) do={ :delay 500ms; }
|
||||||
|
|
||||||
:local Main do={
|
:do {
|
||||||
:local ScriptName [ :tostr $1 ];
|
:local ScriptName [ :jobname ];
|
||||||
|
|
||||||
:global CertRenewTime;
|
:global CertRenewTime;
|
||||||
:global CertRenewUrl;
|
:global CertRenewUrl;
|
||||||
|
@ -132,7 +132,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
:if ([ $ScriptLock $ScriptName ] = false) do={
|
:if ([ $ScriptLock $ScriptName ] = false) do={
|
||||||
:return false;
|
:error false;
|
||||||
}
|
}
|
||||||
$WaitFullyConnected;
|
$WaitFullyConnected;
|
||||||
|
|
||||||
|
@ -216,6 +216,4 @@
|
||||||
", it is invalid after " . ($CertVal->"invalid-after") . ".") false;
|
", it is invalid after " . ($CertVal->"invalid-after") . ".") false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
} on-error={ }
|
||||||
|
|
||||||
$Main [ :jobname ];
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue