blob: 3ce6d2796c757330362337d7de138613ce3b3dec (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#!rsc by RouterOS
# RouterOS script: global-wait
:global GlobalFunctionsReady;
:while ($GlobalFunctionsReady != true) do={
:delay 500ms;
}
:global LogPrintExit2;
$LogPrintExit2 warning "global-wait" ("This script is now useless, please remove it from configuration.") true;
|