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 19E41138350 for ; Sun, 26 Apr 2020 05:24:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5118DE0877; Sun, 26 Apr 2020 05:24:11 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 38903E0877 for ; Sun, 26 Apr 2020 05:24:11 +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 0519B34F2FD for ; Sun, 26 Apr 2020 05:24:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 837311C9 for ; Sun, 26 Apr 2020 05:24:08 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1587878628.e24e331fa3536e751fe90e1158b60c9ad6c4f939.mattst88@gentoo> Subject: [gentoo-commits] proj/releng:master commit in: tools/ X-VCS-Repository: proj/releng X-VCS-Files: tools/catalyst-auto X-VCS-Directories: tools/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: e24e331fa3536e751fe90e1158b60c9ad6c4f939 X-VCS-Branch: master Date: Sun, 26 Apr 2020 05:24:08 +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: 0d39546d-568f-4673-805c-71c559784f56 X-Archives-Hash: a8f90e4b63f85e754dffbc54591cc9fd commit: e24e331fa3536e751fe90e1158b60c9ad6c4f939 Author: Matt Turner gentoo org> AuthorDate: Sun Apr 26 05:23:48 2020 +0000 Commit: Matt Turner gentoo org> CommitDate: Sun Apr 26 05:23:48 2020 +0000 URL: https://gitweb.gentoo.org/proj/releng.git/commit/?id=e24e331f catalyst-auto: Ensure 'options edns0' is in /etc/resolv.conf Signed-off-by: Matt Turner gentoo.org> tools/catalyst-auto | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tools/catalyst-auto b/tools/catalyst-auto index 509917c7..ce155d6d 100755 --- a/tools/catalyst-auto +++ b/tools/catalyst-auto @@ -243,6 +243,11 @@ verify_dnssec() { echo "DNSSEC does not appear to be working. Bailing out" exit 1 fi + + if ! grep -q '^options \' /etc/resolv.conf; then + echo "DNSSEC is not enabled in /etc/resolv.conf" + exit 1 + fi } run_catalyst_commands() {