mirror of
https://github.com/nymurbd/MikroTik-scripts.git
synced 2025-07-01 21:54:31 +02:00
12 lines
224 B
Text
12 lines
224 B
Text
|
#!rsc
|
||
|
# RouterOS script: global-wait
|
||
|
# Copyright (c) 2020 Christian Hesse <mail@eworm.de>
|
||
|
#
|
||
|
# wait for global-functions to finish
|
||
|
|
||
|
:global GlobalFunctionsReady;
|
||
|
|
||
|
:while ($GlobalFunctionsReady != true) do={
|
||
|
:delay 500ms;
|
||
|
}
|