From mboxrd@z Thu Jan 1 00:00:00 1970 From: Peter =?utf-8?q?M=C3=BCller?= To: development@lists.ipfire.org Subject: [PATCH] localnet: Add "edns0" to /etc/resolv.conf options for RFC 2671 support Date: Tue, 07 Jun 2022 19:31:57 +0000 Message-ID: <93e1ca09-818f-dd48-f638-c9b704a00ccf@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============0209824790678167628==" List-Id: --===============0209824790678167628== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 8bit Signed-off-by: Peter Müller --- src/initscripts/system/localnet | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/initscripts/system/localnet b/src/initscripts/system/localnet index f260a1f29..ffa05e397 100644 --- a/src/initscripts/system/localnet +++ b/src/initscripts/system/localnet @@ -26,7 +26,7 @@ write_resolv_conf() { ( [ -n "${DOMAINNAME}" ] && echo "search ${DOMAINNAME}" echo "nameserver 127.0.0.1" - echo "options trust-ad" + echo "options edns0 trust-ad" ) > /etc/resolv.conf } -- 2.35.3 --===============0209824790678167628==--