From patchwork Wed Jun 6 15:09:13 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: dann frazier X-Patchwork-Id: 925901 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=lists.ubuntu.com (client-ip=91.189.94.19; helo=huckleberry.canonical.com; envelope-from=kernel-team-bounces@lists.ubuntu.com; receiver=) Authentication-Results: ozlabs.org; dmarc=fail (p=none dis=none) header.from=canonical.com Received: from huckleberry.canonical.com (huckleberry.canonical.com [91.189.94.19]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 411Bsh4MZ5z9s0W; Thu, 7 Jun 2018 01:09:28 +1000 (AEST) Received: from localhost ([127.0.0.1] helo=huckleberry.canonical.com) by huckleberry.canonical.com with esmtp (Exim 4.86_2) (envelope-from ) id 1fQa3q-0004MZ-Gs; Wed, 06 Jun 2018 15:09:18 +0000 Received: from complete.lackof.org ([198.49.126.79]) by huckleberry.canonical.com with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.86_2) (envelope-from ) id 1fQa3n-0004LJ-He for kernel-team@lists.ubuntu.com; Wed, 06 Jun 2018 15:09:15 +0000 Received: from localhost (50-201-118-110-static.hfc.comcastbusiness.net [50.201.118.110]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by complete.lackof.org (Postfix) with ESMTPSA id C019733E004E for ; Wed, 6 Jun 2018 09:09:13 -0600 (MDT) Date: Wed, 6 Jun 2018 09:09:13 -0600 From: dann frazier To: kernel-team@lists.ubuntu.com Subject: [kteam-tools][PATCH] maintscripts: maint-modify-patch: Switch from http to https for BugLinks Message-ID: <20180606150913.GA24302@xps13.dannf> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.10.0 (2018-05-17) X-Virus-Scanned: clamav-milter 0.99.4 at complete.lackof.org X-Virus-Status: Clean X-Spam-Status: No, score=0.2 required=5.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, UNPARSEABLE_RELAY autolearn=no autolearn_force=no version=3.4.1 X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on complete.lackof.org X-BeenThere: kernel-team@lists.ubuntu.com X-Mailman-Version: 2.1.20 Precedence: list List-Id: Kernel team discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: kernel-team-bounces@lists.ubuntu.com Sender: "kernel-team" We wouldn't want the man in the middle rick-rolling our users, now would we? Signed-off-by: dann frazier Acked-by: Thadeu Lima de Souza Cascardo Acked-by: Colin Ian King --- maintscripts/maint-modify-patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maintscripts/maint-modify-patch b/maintscripts/maint-modify-patch index 99673ec0..442919ed 100755 --- a/maintscripts/maint-modify-patch +++ b/maintscripts/maint-modify-patch @@ -207,7 +207,7 @@ class ModifyPatch(StdApp): self.defaults['list-aliases'] = False self.defaults['modify-operation'] = False self.defaults['dry-run'] = False - self.defaults['buglink_base_url'] = "http://bugs.launchpad.net/bugs/" + self.defaults['buglink_base_url'] = "https://bugs.launchpad.net/bugs/" self.cp_rc = compile('\(cherry picked from commit ([0-9a-zA-Z]+)\)') self.bp_rc = compile('\(backported from commit ([0-9a-zA-Z]+) upstream\)')