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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id CC39D158091 for ; Sun, 15 May 2022 01:00:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BD75CE086A; Sun, 15 May 2022 01:00:35 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A6F4DE086A for ; Sun, 15 May 2022 01:00:35 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 74958341BE1 for ; Sun, 15 May 2022 01:00:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D34F2462 for ; Sun, 15 May 2022 01:00:31 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1652576403.c98eb1d0685b1b9c9d60212477f76154fb64b083.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-dns/pdnsd/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-dns/pdnsd/pdnsd-1.2.9a-r2.ebuild X-VCS-Directories: net-dns/pdnsd/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: c98eb1d0685b1b9c9d60212477f76154fb64b083 X-VCS-Branch: master Date: Sun, 15 May 2022 01:00:31 +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: 7b8aca85-ffbe-4858-bdb6-3623983ab957 X-Archives-Hash: 2ca8cf5439283321f3dbcfcbb09f64a9 commit: c98eb1d0685b1b9c9d60212477f76154fb64b083 Author: Sam James gentoo org> AuthorDate: Sat May 7 06:48:36 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sun May 15 01:00:03 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c98eb1d0 net-dns/pdnsd: fgrep -> grep -F Signed-off-by: Sam James gentoo.org> net-dns/pdnsd/pdnsd-1.2.9a-r2.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net-dns/pdnsd/pdnsd-1.2.9a-r2.ebuild b/net-dns/pdnsd/pdnsd-1.2.9a-r2.ebuild index e22913999e9a..42ab22965ab3 100644 --- a/net-dns/pdnsd/pdnsd-1.2.9a-r2.ebuild +++ b/net-dns/pdnsd/pdnsd-1.2.9a-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -84,7 +84,7 @@ src_test() { dig @127.0.0.1 -p 33455 localhost > "${T}"/dig.output 2>&1 cat "${T}"/dig.output || die - fgrep -q "status: NOERROR" "${T}"/dig.output || fail_kill "www.gentoo.org lookup failed" + grep -F -q "status: NOERROR" "${T}"/dig.output || fail_kill "www.gentoo.org lookup failed" kill $(<"${T}/pid") || fail_kill "failed to terminate daemon" }