From patchwork Tue Jun 7 19:31:57 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Peter_M=C3=BCller?= X-Patchwork-Id: 5649 Return-Path: Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) server-digest SHA384 client-signature ECDSA (P-384) client-digest SHA384) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4LHgTx1gHtz3xqn for ; Tue, 7 Jun 2022 19:32:05 +0000 (UTC) Received: from mail02.haj.ipfire.org (mail02.haj.ipfire.org [172.28.1.201]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail02.haj.ipfire.org", Issuer "R3" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4LHgTw0W6QzlC; Tue, 7 Jun 2022 19:32:04 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4LHgTv70Xhz2yhw; Tue, 7 Jun 2022 19:32:03 +0000 (UTC) Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4LHgTv12Q2z2xSC for ; Tue, 7 Jun 2022 19:32:03 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) server-digest SHA384) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4LHgTs2cv9zj8 for ; Tue, 7 Jun 2022 19:32:00 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1654630322; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=20Yu27ZjGdYLS/CefTI31qN/9K6PnCF3IXZ68J9V9U4=; b=8UxcCYH+4fYBtinWY+q0Cv5uq93E6T48OPfRXT8fjmF0vqh81ldU1wD4ZHEbutet+JOeyn tMg7WQIu8vGd15CA== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1654630322; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=20Yu27ZjGdYLS/CefTI31qN/9K6PnCF3IXZ68J9V9U4=; b=bsNIAuQ9H9b1CLDzcIcwPw+BzP1Dd7y0LhG96tPepMQUmnD5Alj27BaN5iVekLydlkNC/M +xXfMRQGNd75dy43tWUO5KszymGZ0SA627IAOmoLjvzRhB7lq/pnTHK6o48oPVLEGrqGM+ 0X0Rwpi67xOIFgRMmerLoEJHm0oZWqHT1yX1C7CY7ADqMsFCkTtNWsuABapg87/soBNpB/ nBIBhlhbrX0Z8EDL1Tk9fqwadxsL6xkqDK4Za06jM7VqnOm5t5PlqRUw2p6g/kofcgSwl2 MQ8R70LiwBZM2T/DRU5FX+dS+zSibJZvsEKwva1V0DbbijRl9gF4ckANcpSDhw== Message-ID: <93e1ca09-818f-dd48-f638-c9b704a00ccf@ipfire.org> Date: Tue, 7 Jun 2022 19:31:57 +0000 MIME-Version: 1.0 Content-Language: en-US To: "IPFire: Development" From: =?utf-8?q?Peter_M=C3=BCller?= Subject: [PATCH] localnet: Add "edns0" to /etc/resolv.conf options for RFC 2671 support X-BeenThere: development@lists.ipfire.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: IPFire development talk List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: development-bounces@lists.ipfire.org Sender: "Development" Signed-off-by: Peter Müller Reviewed-by: Michael Tremer --- 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 }