From mboxrd@z Thu Jan 1 00:00:00 1970 From: Christopher Kunz Subject: Re: the autobuild gpg key expired! Date: Fri, 08 Feb 2013 18:52:52 +0100 Message-ID: <51153B74.3040203@de-punkt.de> References: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Return-path: Received: from mail-3.de-punkt.de ([93.190.64.33]:34327 "EHLO mail-3.de-punkt.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1946833Ab3BHRw4 (ORCPT ); Fri, 8 Feb 2013 12:52:56 -0500 In-Reply-To: Sender: ceph-devel-owner@vger.kernel.org List-ID: To: ceph-devel@vger.kernel.org Am 08.02.13 07:46, schrieb Sage Weil: > wget -q -O- https://raw.github.com/ceph/ceph/master/keys/autobuild.asc | sudo apt-key add - This doesn't work because raw.github.com uses a certificate issued to CN = *.a.ssl.fastly.net for whatever reason, and wget will complain. It complains rightly, because there is no way to verifiy that this is *actually* github.com we're speaking to. If you want the key regardless, you can use this line: wget --no-check-certificate -q -O- https://raw.github.com/ceph/ceph/master/keys/autobuild.asc | sudo apt-key add - Regards, --ck