global-functions: add $WaitDefaultRouteReachable

This commit is contained in:
Christian Hesse 2020-04-22 22:21:06 +02:00
parent 999763a263
commit b67712cfe4

View file

@ -40,6 +40,7 @@
:global SendTelegram;
:global TimeIsSync;
:global UrlEncode;
:global WaitDefaultRouteReachable;
:global WaitForFile;
:global WaitTimeSync;
@ -694,6 +695,15 @@
:return $Return;
}
# wait for default route to be reachable
:set WaitDefaultRouteReachable do={
:global DefaultRouteIsReachable;
:while ([ $DefaultRouteIsReachable ] = false) do={
:delay 1s;
}
}
# wait for file to be available
:set WaitForFile do={
:global CleanFilePath;