From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id CB359138CBF for ; Tue, 17 Mar 2015 19:51:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 89464E0769; Tue, 17 Mar 2015 19:51:27 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3515DE0769 for ; Tue, 17 Mar 2015 19:51:27 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D753134069A for ; Tue, 17 Mar 2015 19:51:25 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 696C613F48 for ; Tue, 17 Mar 2015 19:51:22 +0000 (UTC) From: "Brian Dolbec" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Dolbec" Message-ID: <1426119320.15298629aee8ae561c409718b8903726fcba330a.dolsen@gentoo> Subject: [gentoo-commits] proj/gentoo-keys:master commit in: gkeys-ldap/gkeyldap/ X-VCS-Repository: proj/gentoo-keys X-VCS-Files: gkeys-ldap/gkeyldap/actions.py X-VCS-Directories: gkeys-ldap/gkeyldap/ X-VCS-Committer: dolsen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: 15298629aee8ae561c409718b8903726fcba330a X-VCS-Branch: master Date: Tue, 17 Mar 2015 19:51:22 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 2ddbcaf9-4605-4997-b8ef-e14c5799af94 X-Archives-Hash: 23013ddd8c28c46193dd8bdc3254ef2f commit: 15298629aee8ae561c409718b8903726fcba330a Author: Brian Dolbec gentoo org> AuthorDate: Thu Mar 12 00:15:20 2015 +0000 Commit: Brian Dolbec gentoo org> CommitDate: Thu Mar 12 00:15:20 2015 +0000 URL: https://gitweb.gentoo.org/proj/gentoo-keys.git/commit/?id=15298629 gkeyldap/actions.py: Comment out longkeyid check The keyid and longkeyid's are being removed soon. With the fix-fp.sh script removing them, There are more and more false positives for errors. gkeys-ldap/gkeyldap/actions.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/gkeys-ldap/gkeyldap/actions.py b/gkeys-ldap/gkeyldap/actions.py index 3f07829..7e951e0 100644 --- a/gkeys-ldap/gkeyldap/actions.py +++ b/gkeys-ldap/gkeyldap/actions.py @@ -242,12 +242,12 @@ class Actions(object): else: gpgkey = 'Missing or Bad fingerprint from LDAP info' is_good = False - if not keyinfo['longkeyid']: - self.logger.error('ERROR in ldap info for: %s, %s' - % (info['uid'][0], info['cn'][0])) - self.logger.error(' A valid keyid, longkeyid or fingerprint ' - 'was not found for %s : gpgkey = %s' % (info['cn'][0], gpgkey)) - is_good = False + #if not keyinfo['longkeyid']: + #self.logger.error('ERROR in ldap info for: %s, %s' + #% (info['uid'][0], info['cn'][0])) + #self.logger.error(' A valid keyid, longkeyid or fingerprint ' + #'was not found for %s : gpgkey = %s' % (info['cn'][0], gpgkey)) + #is_good = False return (keyinfo, is_good)