mirror of
https://github.com/eworm-de/routeros-scripts
synced 2024-05-14 08:04:19 +00:00
lease-script: use $ScriptLock
There were still ways to produce errors from lease scripts... Let's lock earlier, this should fix it.
This commit is contained in:
parent
698c795eee
commit
9509371690
1 changed files with 12 additions and 7 deletions
19
lease-script
19
lease-script
|
@ -13,6 +13,7 @@
|
|||
:global IfThenElse;
|
||||
:global LogPrintExit2;
|
||||
:global ParseKeyValueStore;
|
||||
:global ScriptLock;
|
||||
|
||||
:if ([ :typeof $leaseActIP ] = "nothing" || \
|
||||
[ :typeof $leaseActMAC ] = "nothing" || \
|
||||
|
@ -21,6 +22,12 @@
|
|||
$LogPrintExit2 error $0 ("This script is supposed to run from ip dhcp-server.") true;
|
||||
}
|
||||
|
||||
$ScriptLock $0 false 10;
|
||||
|
||||
:if ([ :len [ / system script job find where script=$0 ] ] > 1) do={
|
||||
$LogPrintExit2 debug $0 ("More invocations are waiting, exiting early.") true;
|
||||
}
|
||||
|
||||
:local State ([ $IfThenElse ($leaseBound = 0) "de" "" ] . "assign");
|
||||
:local RunOrder [ :toarray "" ];
|
||||
|
||||
|
@ -41,12 +48,10 @@ $LogPrintExit2 debug $0 ("DHCP Server " . $leaseServerName . " " . \
|
|||
}
|
||||
|
||||
:foreach Order,Script in=$RunOrder do={
|
||||
:if ([ :len [ / system script job find where script=$Script ] ] < 2) do={
|
||||
:do {
|
||||
$LogPrintExit2 debug $0 ("Running script with order " . $Order . ": " . $Script) false;
|
||||
/ system script run $Script;
|
||||
} on-error={
|
||||
$LogPrintExit2 warning $0 ("Running script '" . $Script . "' failed!") false;
|
||||
}
|
||||
:do {
|
||||
$LogPrintExit2 debug $0 ("Running script with order " . $Order . ": " . $Script) false;
|
||||
/ system script run $Script;
|
||||
} on-error={
|
||||
$LogPrintExit2 warning $0 ("Running script '" . $Script . "' failed!") false;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue