From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas C To: development@lists.ipfire.org Subject: [PATCH] Fix for Bug 12445 There is no proper way to distinguish between MS Azure and a local Hyper-V installation Procedure: try to get the metadata info from the internal MS metadata service at IP 169.254.169.254 If this fails the system is running on an local Hyper-V instance wget takes too long to exit if the IP is not reachable Added --timeout and --tries param to wget to reduce the duation from 8 minutes to 10 seconds 10 seconds at one try should be enough Signed-off-by: Thomas C Date: Sat, 04 Jul 2020 03:01:42 +0200 Message-ID: <20200704010142.47705-1-thomas@cekal.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============7269731243756644098==" List-Id: --===============7269731243756644098== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable --- src/initscripts/helper/azure-setup | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/initscripts/helper/azure-setup b/src/initscripts/helper/azur= e-setup index 291b8e0a4..7c331bfb5 100644 --- a/src/initscripts/helper/azure-setup +++ b/src/initscripts/helper/azure-setup @@ -9,7 +9,7 @@ export PATH=3D/usr/local/sbin:/usr/local/bin:${PATH} get() { local file=3D"${1}" =20 - wget -qO - --header=3D"Metadata:true" "http://169.254.169.254/metadata/inst= ance/${file}?api-version=3D2019-06-01&format=3Dtext" + wget --timeout=3D10 --tries=3D1 -qO - --header=3D"Metadata:true" "http://16= 9.254.169.254/metadata/instance/${file}?api-version=3D2019-06-01&format=3Dtex= t" } =20 format_mac() { --=20 2.14.1 --===============7269731243756644098==--