From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail02.haj.ipfire.org (localhost [IPv6:::1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4gPxWJ3tQsz2xXH for ; Tue, 26 May 2026 15:29:32 +0000 (UTC) Received: from mail01.ipfire.org (mail01.haj.ipfire.org [IPv6:2001:678:b28::25]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (Client CN "mail01.haj.ipfire.org", Issuer "R12" (not verified)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4gPxWJ3Xrbz2xBZ for ; Tue, 26 May 2026 15:29:32 +0000 (UTC) Received: from people01.haj.ipfire.org (people01.haj.ipfire.org [172.28.1.161]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (Client CN "people01.haj.ipfire.org", Issuer "E8" (not verified)) by mail01.ipfire.org (Postfix) with ESMTPS id 4gPxWJ18NFzjG for ; Tue, 26 May 2026 15:29:32 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1779809372; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc; bh=G6KQ9aiem+etnwXh9yeTw5r+LpIFPfAM4Oz25cOPAds=; b=X9Qt2LC5YFZJitl5Ay1Zb+VojtZuPjrQnnH+sqGpXwho07O+m8Eou265olmSGFVZ16AA+H Q9vHaEl5rR8jMNAw== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1779809372; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc; bh=G6KQ9aiem+etnwXh9yeTw5r+LpIFPfAM4Oz25cOPAds=; b=jEhOpt1MC5sRNx4Lk/nALGtgAEoD5Xc60Wh9nSwZwd/IjjZgi7BVviFo3xBgsKZq914AaX o5lQBY3kknL3nDBlo7giYz5+bVMzmeXFp6g55nbwo48Lmb7qso9foMmjY8xujd9WJah+yV YHNXS5hZ6xZN1iSDtiE5Dni8eQaM+mUqHSG2jpM3dD0j4HXtjszid301S9wb9NR+4vbAQV Chg2glpd2FOSGnBXpvp+pR6rTCCMT8sD2XtVR+tcop4NT8Uao72aSHokWAqMKBjEDCh7Po LslQWWv/b6f5V5Hru5fNc+QjiCNf0hcQPAgfhY6VprPgErlNoqClZrg3egokhA== Received: by people01.haj.ipfire.org (Postfix, from userid 1000) id 4gPxWJ09qqz2xMt; Tue, 26 May 2026 15:29:32 +0000 (UTC) To: ipfire-scm@lists.ipfire.org Subject: [git.ipfire.org] IPFire 2.x development tree branch, next, updated. 240827441761c4eb7640d0cf98e857659cb66cfb X-Git-Refname: refs/heads/next X-Git-Reftype: branch X-Git-Oldrev: aa37fa7cf007ae6ada351b74ff62dba63553c4c1 X-Git-Newrev: 240827441761c4eb7640d0cf98e857659cb66cfb Message-Id: <4gPxWJ09qqz2xMt@people01.haj.ipfire.org> Date: Tue, 26 May 2026 15:29:31 +0000 (UTC) From: Michael Tremer Precedence: list List-Id: List-Subscribe: , List-Unsubscribe: , List-Post: List-Help: Sender: Mail-Followup-To: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "IPFire 2.x development tree". The branch, next has been updated via 240827441761c4eb7640d0cf98e857659cb66cfb (commit) from aa37fa7cf007ae6ada351b74ff62dba63553c4c1 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 240827441761c4eb7640d0cf98e857659cb66cfb Author: Michael Tremer Date: Tue May 26 09:22:34 2026 +0000 knot-resolver: Fix ownership of /var/lib/knot-resolver Fixes: #13983 - Wrong ownership for "/var/lib/knot-resolver" Signed-off-by: Michael Tremer ----------------------------------------------------------------------- Summary of changes: lfs/knot-resolver | 3 +++ 1 file changed, 3 insertions(+) Difference in files: diff --git a/lfs/knot-resolver b/lfs/knot-resolver index 27b613de3..451f605bf 100644 --- a/lfs/knot-resolver +++ b/lfs/knot-resolver @@ -106,6 +106,9 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) install -v -m 755 $(DIR_SRC)/config/knot-resolver/dhcp-lease \ /usr/sbin/dhcp-lease + # Change the ownership of /var/lib/knot-resolver + chown knot-resolver:knot-resolver /var/lib/knot-resolver + # Create cache directory -mkdir -pv /var/cache/knot-resolver chown knot-resolver:knot-resolver /var/cache/knot-resolver hooks/post-receive -- IPFire 2.x development tree