diff options
author | Christian Hesse <mail@eworm.de> | 2021-02-18 14:52:47 +0100 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2021-02-18 21:45:38 +0100 |
commit | d5afc79eed2a54ab005f1b0ccf656c43a57e0a9b (patch) | |
tree | fb659b8c3fff90a6c5068513293c67132c3ec9aa /global-wait | |
parent | 2db73a189c6eb2cc16ec2f2a4c4b33133ae8130d (diff) |
global: drop script 'global-wait'change-44
All scripts wait for the global functions on their own now.
Diffstat (limited to 'global-wait')
-rw-r--r-- | global-wait | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/global-wait b/global-wait index edb156b..18f2fb8 100644 --- a/global-wait +++ b/global-wait @@ -1,13 +1,11 @@ #!rsc by RouterOS # RouterOS script: global-wait -# Copyright (c) 2020-2021 Christian Hesse <mail@eworm.de> -# https://git.eworm.de/cgit/routeros-scripts/about/COPYING.md -# -# wait for global-functions to finish -# https://git.eworm.de/cgit/routeros-scripts/about/doc/global-wait.md :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; |