From 9aa82316c8926773724e2dde24d58594c96bb832 Mon Sep 17 00:00:00 2001 From: Christian Hesse Date: Fri, 17 Jun 2022 00:18:59 +0200 Subject: global-functions: rename internal function: $DNSIsResolving -> $IsDNSResolving --- global-functions | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) (limited to 'global-functions') diff --git a/global-functions b/global-functions index 0440c31..79aedb7 100644 --- a/global-functions +++ b/global-functions @@ -23,7 +23,6 @@ :global CharacterReplace; :global CleanFilePath; :global DeviceInfo; -:global DNSIsResolving; :global DownloadPackage; :global EitherOr; :global EscapeForRegEx; @@ -34,6 +33,7 @@ :global HexToNum; :global IfThenElse; :global IsDefaultRouteReachable; +:global IsDNSResolving; :global LogPrintExit2; :global MkDir; :global NotificationFunctions; @@ -225,18 +225,6 @@ ("\n Expected: " . $ExpectedConfigVersion) ]); } -# check if DNS is resolving -:set DNSIsResolving do={ - :global CharacterReplace; - - :do { - :resolve "low-ttl.eworm.de"; - } on-error={ - :return false; - } - :return true; -} - # download package from upgrade server :set DownloadPackage do={ :local PkgName [ :tostr $1 ]; @@ -462,6 +450,18 @@ :return false; } +# check if DNS is resolving +:set IsDNSResolving do={ + :global CharacterReplace; + + :do { + :resolve "low-ttl.eworm.de"; + } on-error={ + :return false; + } + :return true; +} + # log and print with same text, optionally exit :set LogPrintExit2 do={ :local Severity [ :tostr $1 ]; @@ -1217,9 +1217,9 @@ # wait for DNS to resolve :set WaitDNSResolving do={ - :global DNSIsResolving; + :global IsDNSResolving; - :while ([ $DNSIsResolving ] = false) do={ + :while ([ $IsDNSResolving ] = false) do={ :delay 1s; } } -- cgit v1.2.3-54-g00ecf