From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Wed, 29 Jun 2022 09:28:43 +0200 Received: from metis.ext.pengutronix.de ([2001:67c:670:201:290:27ff:fe1d:cc33]) by lore.white.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1o6S7s-000y3f-1E for lore@lore.pengutronix.de; Wed, 29 Jun 2022 09:28:43 +0200 Received: from localhost ([127.0.0.1] helo=metis.ext.pengutronix.de) by metis.ext.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1o6S7u-0006Nw-RY; Wed, 29 Jun 2022 09:28:42 +0200 Received: from mail.thorsis.com ([92.198.35.195]) by metis.ext.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1o6S7Q-0006Nn-Tg for ptxdist@pengutronix.de; Wed, 29 Jun 2022 09:28:13 +0200 Date: Wed, 29 Jun 2022 09:28:07 +0200 From: Alexander Dahl To: Bruno Thomsen Message-ID: Mail-Followup-To: Bruno Thomsen , ptxdist@pengutronix.de References: <20220629044605.5298-1-bruno.thomsen@gmail.com> Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20220629044605.5298-1-bruno.thomsen@gmail.com> X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on metis.ext.pengutronix.de X-Spam-Level: X-Spam-Status: No, score=-2.6 required=4.0 tests=AWL,BAYES_00,SPF_HELO_NONE, SPF_PASS,T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.2 Subject: Re: [ptxdist] [PATCH] dropbear: change URL from http to https X-BeenThere: ptxdist@pengutronix.de X-Mailman-Version: 2.1.29 Precedence: list List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: ptxdist@pengutronix.de Cc: ptxdist@pengutronix.de Sender: "ptxdist" X-SA-Exim-Connect-IP: 127.0.0.1 X-SA-Exim-Mail-From: ptxdist-bounces@pengutronix.de X-SA-Exim-Scanned: No (on metis.ext.pengutronix.de); SAEximRunCond expanded to false Hello, Am Wed, Jun 29, 2022 at 06:46:05AM +0200 schrieb Bruno Thomsen: > Downloading package result in http code 301 Moved Permanently from > server. Update used URL to match redirect URL. > > --2022-06-27 06:54:09-- http://matt.ucc.asn.au/dropbear/releases/dropbear-2020.81.tar.bz2 > Resolving matt.ucc.asn.au (matt.ucc.asn.au)... 104.26.9.126, 172.67.72.143, 104.26.8.126, ... > Connecting to matt.ucc.asn.au (matt.ucc.asn.au)|104.26.9.126|:80... connected. > HTTP request sent, awaiting response... 301 Moved Permanently > Location: https://matt.ucc.asn.au/dropbear/releases/dropbear-2020.81.tar.bz2 [following] > --2022-06-27 06:54:10-- https://matt.ucc.asn.au/dropbear/releases/dropbear-2020.81.tar.bz2 > Connecting to matt.ucc.asn.au (matt.ucc.asn.au)|104.26.9.126|:443... connected. > HTTP request sent, awaiting response... 200 OK > Length: 2289644 (2.2M) [application/x-bzip2] > > Signed-off-by: Bruno Thomsen > --- > rules/dropbear.make | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/rules/dropbear.make b/rules/dropbear.make > index 066453259..cb949d761 100644 > --- a/rules/dropbear.make > +++ b/rules/dropbear.make > @@ -20,7 +20,7 @@ DROPBEAR_VERSION := 2020.81 > DROPBEAR_MD5 := a07438a6159a24c61f98f1bce2d479c0 > DROPBEAR := dropbear-$(DROPBEAR_VERSION) > DROPBEAR_SUFFIX := tar.bz2 > -DROPBEAR_URL := http://matt.ucc.asn.au/dropbear/releases/$(DROPBEAR).$(DROPBEAR_SUFFIX) > +DROPBEAR_URL := https://matt.ucc.asn.au/dropbear/releases/$(DROPBEAR).$(DROPBEAR_SUFFIX) Reviewed-by: Alexander Dahl Greets Alex > DROPBEAR_SOURCE := $(SRCDIR)/$(DROPBEAR).$(DROPBEAR_SUFFIX) > DROPBEAR_DIR := $(BUILDDIR)/$(DROPBEAR) > DROPBEAR_LICENSE := \ > > base-commit: 85010b0d7eb9d209cdc2dc61e955289556ecac43 > -- > 2.36.1 > >