mirror of
https://github.com/eworm-de/routeros-scripts.git
synced 2025-06-24 18:58:43 +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;
|
||
|
}
|