add script 'global-wait'
Run this in schedulers that fire on startup without interval. Schedulers
should look something like this:
/ system scheduler {
add name=global-scripts on-event="/ system script { run global-config; run global-config-overlay; run global-functions; }" start-time=startup;
add name=bridge-port-to-default on-event="/ system script { run global-wait; run bridge-port-to-default; }" start-time=startup;
}
This commit is contained in:
parent
63ed093340
commit
98585afe1c
3 changed files with 17 additions and 2 deletions
|
|
@ -9,6 +9,7 @@
|
|||
:global ExpectedConfigVersion 13;
|
||||
|
||||
# global variables not to be changed by user
|
||||
:global GlobalFunctionsReady false;
|
||||
:global Identity [ / system identity get name ];
|
||||
:global SentConfigChangesNotification "-";
|
||||
:global SentLteFirmwareUpgradeNotification "-";
|
||||
|
|
@ -524,3 +525,6 @@
|
|||
:delay 1s;
|
||||
}
|
||||
}
|
||||
|
||||
# signal we are ready
|
||||
:set GlobalFunctionsReady true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue