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 7EBC5138334 for ; Sun, 29 Jul 2018 11:50:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 332E0E08A2; Sun, 29 Jul 2018 11:50:18 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 0335CE08A2 for ; Sun, 29 Jul 2018 11:50:17 +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 543BD335C8E for ; Sun, 29 Jul 2018 11:50:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 876E4377 for ; Sun, 29 Jul 2018 11:50:03 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1532864969.41ada5fca2a464dde3602c8486fe238ba12c1dd7.mgorny@gentoo> Subject: [gentoo-commits] proj/qa-scripts:master commit in: / X-VCS-Repository: proj/qa-scripts X-VCS-Files: create-dev-keyrings.bash X-VCS-Directories: / X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 41ada5fca2a464dde3602c8486fe238ba12c1dd7 X-VCS-Branch: master Date: Sun, 29 Jul 2018 11:50:03 +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: 02e1c28b-77ed-4066-9fde-1466506f8662 X-Archives-Hash: d052b82618f3a2e894d64c2aa85da5e7 commit: 41ada5fca2a464dde3602c8486fe238ba12c1dd7 Author: Michał Górny gentoo org> AuthorDate: Sun Jul 29 11:49:29 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Jul 29 11:49:29 2018 +0000 URL: https://gitweb.gentoo.org/proj/qa-scripts.git/commit/?id=41ada5fc create-dev-keyrings: Increase gpg refresh timeout create-dev-keyrings.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/create-dev-keyrings.bash b/create-dev-keyrings.bash index 5d2f23c..0afe352 100755 --- a/create-dev-keyrings.bash +++ b/create-dev-keyrings.bash @@ -24,7 +24,7 @@ grab_keys() { local remaining=( "${@}" ) while :; do - timeout 5m gpg -q --recv-keys "${remaining[@]}" || : + timeout 20m gpg -q --recv-keys "${remaining[@]}" || : missing=() for key in "${remaining[@]}"; do gpg --list-public "${key}" &>/dev/null || missing+=( "${key}" )