blob: 18f2fb824ef0669681b9b6155fb249066a9a6165 (
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 LogPrintExit;
$LogPrintExit warning ("This script 'global-wait' is now useless, please remove it from configuration.") true;
|