mirror of
https://github.com/eworm-de/routeros-scripts.git
synced 2025-06-20 17:15:48 +02:00
13 lines
407 B
Text
13 lines
407 B
Text
#!rsc by RouterOS
|
|
# RouterOS script: global-wait
|
|
# Copyright (c) 2020-2025 Christian Hesse <mail@eworm.de>
|
|
# https://rsc.eworm.de/COPYING.md
|
|
#
|
|
# requires RouterOS, version=7.15
|
|
#
|
|
# wait for global-functions to finish
|
|
# https://rsc.eworm.de/doc/global-wait.md
|
|
|
|
:global GlobalConfigReady;
|
|
:global GlobalFunctionsReady;
|
|
:while ($GlobalConfigReady != true || $GlobalFunctionsReady != true) do={ :delay 500ms; }
|