diff options
author | Sam James <sam@gentoo.org> | 2022-05-07 07:48:36 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-05-15 01:00:03 +0000 |
commit | c98eb1d0685b1b9c9d60212477f76154fb64b083 (patch) | |
tree | f1ff31c090769e9fc2a69f689cdd05f428b545c5 /net-dns/pdnsd | |
parent | net-misc/ipv6calc: remove older version (diff) | |
download | gentoo-c98eb1d0685b1b9c9d60212477f76154fb64b083.tar.gz gentoo-c98eb1d0685b1b9c9d60212477f76154fb64b083.tar.bz2 gentoo-c98eb1d0685b1b9c9d60212477f76154fb64b083.zip |
net-dns/pdnsd: fgrep -> grep -F
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-dns/pdnsd')
-rw-r--r-- | net-dns/pdnsd/pdnsd-1.2.9a-r2.ebuild | 4 |
1 files 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" } |