mirror of
https://git.eworm.de/cgit/routeros-scripts
synced 2025-06-22 09:43:30 +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;
|
||
|
}
|