From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 62C061381F3 for ; Tue, 26 May 2020 05:59:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 85D2FE0887; Tue, 26 May 2020 05:59:32 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 67FB2E0887 for ; Tue, 26 May 2020 05:59:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E1EC034EF8A for ; Tue, 26 May 2020 05:59:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 95BB59C for ; Tue, 26 May 2020 05:59:29 +0000 (UTC) From: "Robin H. Johnson" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Robin H. Johnson" Message-ID: <1590472768.f45e23a3c5b1526cc774545980d53fb081431af0.robbat2@gentoo> Subject: [gentoo-commits] proj/qa-scripts:master commit in: / X-VCS-Repository: proj/qa-scripts X-VCS-Files: keyrings.inc.bash X-VCS-Directories: / X-VCS-Committer: robbat2 X-VCS-Committer-Name: Robin H. Johnson X-VCS-Revision: f45e23a3c5b1526cc774545980d53fb081431af0 X-VCS-Branch: master Date: Tue, 26 May 2020 05:59:29 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 45e3e535-c8ee-4e58-85a2-21c5ba4d89ef X-Archives-Hash: 5b5859ed5b55c6fb2a2695e99b33e089 commit: f45e23a3c5b1526cc774545980d53fb081431af0 Author: Robin H. Johnson gentoo org> AuthorDate: Tue May 26 05:59:21 2020 +0000 Commit: Robin H. Johnson gentoo org> CommitDate: Tue May 26 05:59:28 2020 +0000 URL: https://gitweb.gentoo.org/proj/qa-scripts.git/commit/?id=f45e23a3 keyrings: ensure ldap simple binding is used Signed-off-by: Robin H. Johnson gentoo.org> keyrings.inc.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/keyrings.inc.bash b/keyrings.inc.bash index 39a0aec..d19f0ad 100644 --- a/keyrings.inc.bash +++ b/keyrings.inc.bash @@ -18,7 +18,7 @@ export SYSTEM_KEYS=( ) # grab_ldap_fingerprints grab_ldap_fingerprints() { - ldapsearch "${@}" -Z gpgfingerprint -LLL | + ldapsearch "${@}" -x -Z gpgfingerprint -LLL | sed -n -e '/: undefined/d' -e '/^gpgfingerprint: /{s/^.*://;s/ //g;p}' | sort -u }