From patchwork Mon May 25 11:55:44 2026 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adolf Belka X-Patchwork-Id: 9863 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) (Client CN "mail01.haj.ipfire.org", Issuer "R12" (not verified)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4gPDqX6dw3z3wqm for ; Mon, 25 May 2026 11:56:08 +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) (Client CN "mail02.haj.ipfire.org", Issuer "E8" (not verified)) by mail01.ipfire.org (Postfix) with ESMTPS id 4gPDqV2DGMz7GB for ; Mon, 25 May 2026 11:56:06 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [IPv6:::1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4gPDqT0jlmz34Jn for ; Mon, 25 May 2026 11:56:05 +0000 (UTC) X-Original-To: development@lists.ipfire.org 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 (secp384r1 raw public key) server-digest SHA384 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mail01.haj.ipfire.org", Issuer "R12" (not verified)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4gPDqQ3LpVz2xKC for ; Mon, 25 May 2026 11:56:02 +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 RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4gPDqP3k7wz1GJ; Mon, 25 May 2026 11:56:01 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1779710161; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=uj8+vzj6ySbEr7zrvIDSOZcxeKb44VGT60WVe5B/4jk=; b=dT4O1ylKKAduO+wnv0mOzJdAAR/QvcYiz10RO5RbCMtHqmWSFMCilhL6Npd5jNLhuZg6QQ L8Qr/TgaOzTBpVCQ== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1779710161; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=uj8+vzj6ySbEr7zrvIDSOZcxeKb44VGT60WVe5B/4jk=; b=JwYqcfjY3LncOHsxAN/DhvfBGrv+ZyXZPfIcFRiduR1qrLRBhZvfBrMPLstqQzTI8uqmeZ ZMOxuKQlMMCuwDPq58DPYdWSEJ19NXsDlagS+i5xcnQGk7l3Wng6x7Q6T5p0o7xh/b30RB CQqHy3XYxhG0iDE41iiGWq30SBLD9vsGBvizvHuL7VVGJHXU7oXUaOeUCh0vgzhirW+xOo QYVghiqGzPGc52Bptxxdmommp4krtWXLtGi/pgKgp6Xf/GHKnOHDJ6joVbjoGAyZGnCoaM RyRLXV5LyBzIsQWNk1uLRp9Gf8c3HCFTuFSmOaMxHX+Eh3eBUOFA1YfTeUiIBQ== From: Adolf Belka To: development@lists.ipfire.org Cc: Adolf Belka Subject: [PATCH 01/14] collectd: Fix build warning chown: warning: '.' should be ':' Date: Mon, 25 May 2026 13:55:44 +0200 Message-ID: <20260525115557.3631627-1-adolf.belka@ipfire.org> Precedence: list List-Id: List-Subscribe: , List-Unsubscribe: , List-Post: List-Help: Sender: Mail-Followup-To: MIME-Version: 1.0 - Replace ownership separator from . to : Signed-off-by: Adolf Belka --- lfs/collectd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lfs/collectd b/lfs/collectd index f7e6ee206..b063bd36f 100644 --- a/lfs/collectd +++ b/lfs/collectd @@ -1,7 +1,7 @@ ############################################################################### # # # IPFire.org - A linux based firewall # -# Copyright (C) 2007-2024 IPFire Team # +# Copyright (C) 2007-2026 IPFire Team # # # # This program is free software: you can redistribute it and/or modify # # it under the terms of the GNU General Public License as published by # @@ -105,7 +105,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) echo "# Put custom configfiles in this folder" > /etc/collectd.d/info cp -vf $(DIR_SRC)/config/collectd/collectd.* /etc/ mv /etc/collectd.vpn /var/ipfire/ovpn/collectd.vpn - chown nobody.nobody /var/ipfire/ovpn/collectd.vpn + chown nobody:nobody /var/ipfire/ovpn/collectd.vpn # install the collectd 4.x to 5.x migration program install -v -m 755 -o root $(DIR_APP)/contrib/migrate-4-5.px /var/ipfire/collectd-migrate-4-to-5.pl ln -f -s ../var/ipfire/ovpn/collectd.vpn /etc/collectd.vpn From patchwork Mon May 25 11:55:45 2026 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adolf Belka X-Patchwork-Id: 9861 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 (secp384r1 raw public key) server-digest SHA384 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mail01.haj.ipfire.org", Issuer "R12" (not verified)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4gPDqX6KYnz3wmP for ; Mon, 25 May 2026 11:56:08 +0000 (UTC) Received: from mail02.haj.ipfire.org (mail02.haj.ipfire.org [IPv6:2001:678:b28::201]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (Client CN "mail02.haj.ipfire.org", Issuer "E8" (not verified)) by mail01.ipfire.org (Postfix) with ESMTPS id 4gPDqV25qhz7Fc for ; Mon, 25 May 2026 11:56:06 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [IPv6:::1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4gPDqT0jmQz34Jr for ; Mon, 25 May 2026 11:56:05 +0000 (UTC) X-Original-To: development@lists.ipfire.org 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) (Client CN "mail01.haj.ipfire.org", Issuer "R12" (not verified)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4gPDqQ3dk6z2xPV for ; Mon, 25 May 2026 11:56:02 +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 RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4gPDqQ1gcSz2x3; Mon, 25 May 2026 11:56:02 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1779710162; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=uQpHcGj5nDU9io5HbjzdbooExF8+WJV9Njcob+2FyOw=; b=PTKw0DpuxgKUiAHTZggw0zq31yE8U1/Wg99jB5jpYIbepv3U9Pjfrg8E5lo4L9SgaeasNg 7iUFTp8X5EEnbRBQ== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1779710162; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=uQpHcGj5nDU9io5HbjzdbooExF8+WJV9Njcob+2FyOw=; b=RitnR2NDRfcNAIgmpcngDTU/UpwAf9NBN1AdYnBvAhrGFbJU3d2by/as+9YSEq1Wdy7PT0 ER1HA2Wx4Kcw+dLPr3RmJS+2mXqP/RI0dt54JpIG6gjZhKKpL6UxuLiYQ+NJIgbDl8Im6h Zpa/JsfglNs3UBBXpD5HyTKIB8KixGSGN0//Gd5sgNgsM7ZzRYbS88oQYIMbEWa1KhUkQd XYonu2jdK1Bgd37OP6s736zH4OYW2jj1fBJW5zcsAbIlTfwCrumMlmao5ishusxjDQi7ka 6WJ7DL3p4y+DWU6rErMuZ6xj7jPBJQUMyD4xz7RC6gfxz9/KwgStLePgAKvKyQ== From: Adolf Belka To: development@lists.ipfire.org Cc: Adolf Belka Subject: [PATCH 02/14] core203: Ship collectd Date: Mon, 25 May 2026 13:55:45 +0200 Message-ID: <20260525115557.3631627-2-adolf.belka@ipfire.org> In-Reply-To: <20260525115557.3631627-1-adolf.belka@ipfire.org> References: <20260525115557.3631627-1-adolf.belka@ipfire.org> Precedence: list List-Id: List-Subscribe: , List-Unsubscribe: , List-Post: List-Help: Sender: Mail-Followup-To: MIME-Version: 1.0 Signed-off-by: Adolf Belka --- config/rootfiles/core/203/filelists/collectd | 1 + 1 file changed, 1 insertion(+) create mode 120000 config/rootfiles/core/203/filelists/collectd diff --git a/config/rootfiles/core/203/filelists/collectd b/config/rootfiles/core/203/filelists/collectd new file mode 120000 index 000000000..871b32f14 --- /dev/null +++ b/config/rootfiles/core/203/filelists/collectd @@ -0,0 +1 @@ +../../../common/collectd \ No newline at end of file From patchwork Mon May 25 11:55:46 2026 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adolf Belka X-Patchwork-Id: 9862 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) (Client CN "mail01.haj.ipfire.org", Issuer "R12" (not verified)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4gPDqX6T7Dz3wql for ; Mon, 25 May 2026 11:56:08 +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) (Client CN "mail02.haj.ipfire.org", Issuer "E8" (not verified)) by mail01.ipfire.org (Postfix) with ESMTPS id 4gPDqV2T0nz7GS for ; Mon, 25 May 2026 11:56:06 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [IPv6:::1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4gPDqT1Pwkz330h for ; Mon, 25 May 2026 11:56:05 +0000 (UTC) X-Original-To: development@lists.ipfire.org 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) (Client CN "mail01.haj.ipfire.org", Issuer "R12" (not verified)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4gPDqQ4KFyz2yTD for ; Mon, 25 May 2026 11:56:02 +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 RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4gPDqQ34hqz340; Mon, 25 May 2026 11:56:02 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1779710162; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=oGENODeJ+R80UbQMZ8yqzd3zaZ3yxJFg6/p3hTuMO3M=; b=yshUJBJ3VBYu4p1ydpmEY5tbLJvSr2g9992RUgVBX/Ksfrky0DMm4Q862Z+kBvVS2B8bPR ay64r/dviGy6xKCg== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1779710162; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=oGENODeJ+R80UbQMZ8yqzd3zaZ3yxJFg6/p3hTuMO3M=; b=E02xTNitNbM6VNw8fJUOq8hRGSQ7G7xLZnGhiwxUHsUH3gudSwMyFAgZw3yivPLr/rIC8i dDtjEt0OGbft663SQDL84ar02szQoWotRmpLNMvMC+vXz6dPcZpp0NJV6wU0dsoi3X3P4t /JbsvxmbkY7cqvD17ni30zjBrs5wnqFKr+J7/ndtI/C2BsXsam5kfkzzoZKzSgwijkQ7Ni S/tU1oYSMB0epsrsev87gR8DSMbwdQnsAKJw6o+vrLUR/A4ug4P0YjSu4cLWH3TykAZ6fp +KX/bd87LlsXK/Qvb0rEWA6oyEuK/09xHkScl70Tv5SWTUcrUM9HzEL4sdFEWA== From: Adolf Belka To: development@lists.ipfire.org Cc: Adolf Belka Subject: [PATCH 03/14] dma: Fix build warning - chown: warning: '.' should be ':' Date: Mon, 25 May 2026 13:55:46 +0200 Message-ID: <20260525115557.3631627-3-adolf.belka@ipfire.org> In-Reply-To: <20260525115557.3631627-1-adolf.belka@ipfire.org> References: <20260525115557.3631627-1-adolf.belka@ipfire.org> Precedence: list List-Id: List-Subscribe: , List-Unsubscribe: , List-Post: List-Help: Sender: Mail-Followup-To: MIME-Version: 1.0 - Replace ownership separator from . to : Signed-off-by: Adolf Belka --- lfs/dma | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lfs/dma b/lfs/dma index 9200de290..f56210eb9 100644 --- a/lfs/dma +++ b/lfs/dma @@ -1,7 +1,7 @@ ############################################################################### # # # IPFire.org - A linux based firewall # -# Copyright (C) 2007-2025 IPFire Team # +# Copyright (C) 2007-2026 IPFire Team # # # # This program is free software: you can redistribute it and/or modify # # it under the terms of the GNU General Public License as published by # @@ -80,8 +80,8 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) cd $(DIR_APP) && make cd $(DIR_APP) && make install mailq-link install-spool-dirs install-etc install -v -m 755 $(DIR_SRC)/config/dma/dma-cleanup-spool /usr/sbin - chown -R nobody.nobody /var/ipfire/dma - chown nobody.mail /var/ipfire/dma/auth.conf + chown -R nobody:nobody /var/ipfire/dma + chown nobody:mail /var/ipfire/dma/auth.conf chmod 640 /var/ipfire/dma/auth.conf ln -svf dma /usr/sbin/sendmail.dma /usr/sbin/alternatives --install /usr/sbin/sendmail sendmail /usr/sbin/sendmail.dma 20 From patchwork Mon May 25 11:55:47 2026 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adolf Belka X-Patchwork-Id: 9860 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 (secp384r1 raw public key) server-digest SHA384 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mail01.haj.ipfire.org", Issuer "R12" (not verified)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4gPDqX67tNz3wh2 for ; Mon, 25 May 2026 11:56:08 +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) (Client CN "mail02.haj.ipfire.org", Issuer "E8" (not verified)) by mail01.ipfire.org (Postfix) with ESMTPS id 4gPDqV3jZxz7HC for ; Mon, 25 May 2026 11:56:06 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [IPv6:::1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4gPDqT38r3z34Ph for ; Mon, 25 May 2026 11:56:05 +0000 (UTC) X-Original-To: development@lists.ipfire.org 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) (Client CN "mail01.haj.ipfire.org", Issuer "R12" (not verified)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4gPDqQ5kvwz32f1 for ; Mon, 25 May 2026 11:56:02 +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 RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4gPDqQ4CF9z1GJ; Mon, 25 May 2026 11:56:02 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1779710162; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=erOj/2N3RDBoJlfVG/LxdNv16OWSo+tpnbzQJNirg5A=; b=NWjkfP46N0IzN38BBS+kmyshl65j2BNXTh77T6keXVP/vc+hWgBc6SXERyMptOt4ccXo6Q C+F+UYFWkoIqXzCg== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1779710162; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=erOj/2N3RDBoJlfVG/LxdNv16OWSo+tpnbzQJNirg5A=; b=W8lswnKWqjrA3j9oU728SXhqvaBUviIyGi1LXVnYP6XO5hNK+sy7PxuWxPZ37EmUtz0yXB 4Uxl3WavdP4lKFGf37ptBbQ28uRZr/5mvCDZsspE7pt370ijfUWyjKjZF3BkxKiHfJnTKj 40RciwuJa2FADisVDd4QVSWDifNInok+0AZTGlBkA6uiCxiSnz1YrXfFvOKBV++3pMdEI1 yfa5ydsF9UqdYTVRdS7EFv4wvSOmlFCTyosseftVVtT+1ZEM/7hvJELX8DpL/4Y7v4g/uM /G7FCNSCZcCeKk71HZYYx3Fw1FTke+QgY2U8mWV0/sR6Eg9TQEBlmXMemsMx7w== From: Adolf Belka To: development@lists.ipfire.org Cc: Adolf Belka Subject: [PATCH 04/14] core203: Ship dma Date: Mon, 25 May 2026 13:55:47 +0200 Message-ID: <20260525115557.3631627-4-adolf.belka@ipfire.org> In-Reply-To: <20260525115557.3631627-1-adolf.belka@ipfire.org> References: <20260525115557.3631627-1-adolf.belka@ipfire.org> Precedence: list List-Id: List-Subscribe: , List-Unsubscribe: , List-Post: List-Help: Sender: Mail-Followup-To: MIME-Version: 1.0 Signed-off-by: Adolf Belka --- config/rootfiles/core/203/filelists/dma | 1 + 1 file changed, 1 insertion(+) create mode 120000 config/rootfiles/core/203/filelists/dma diff --git a/config/rootfiles/core/203/filelists/dma b/config/rootfiles/core/203/filelists/dma new file mode 120000 index 000000000..60f4682da --- /dev/null +++ b/config/rootfiles/core/203/filelists/dma @@ -0,0 +1 @@ +../../../common/dma \ No newline at end of file From patchwork Mon May 25 11:55:48 2026 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adolf Belka X-Patchwork-Id: 9868 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) (Client CN "mail01.haj.ipfire.org", Issuer "R12" (not verified)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4gPDqj3SQzz3wqm for ; Mon, 25 May 2026 11:56:17 +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) (Client CN "mail02.haj.ipfire.org", Issuer "E8" (not verified)) by mail01.ipfire.org (Postfix) with ESMTPS id 4gPDqd1xqHz79f for ; Mon, 25 May 2026 11:56:13 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [IPv6:::1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4gPDqZ5Cw2z34PX for ; Mon, 25 May 2026 11:56:10 +0000 (UTC) X-Original-To: development@lists.ipfire.org 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 server-signature ECDSA (secp384r1 raw public key) server-digest SHA384 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mail01.haj.ipfire.org", Issuer "R12" (not verified)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4gPDqS1H8nz34SJ for ; Mon, 25 May 2026 11:56:04 +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 RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4gPDqQ5ct2z2x3; Mon, 25 May 2026 11:56:02 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1779710162; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=NDpvsNNiEhH96JfJGBISuLmBINQBhCNtLPSIqEwBWH8=; b=FBw2BkJVR8Ebl7pw94wGRH2MKjJALr/Eb+V2592YoRVovEALhKIKGMccigE89b2ZOI9dsF 13c0w/diSTS3RSAw== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1779710162; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=NDpvsNNiEhH96JfJGBISuLmBINQBhCNtLPSIqEwBWH8=; b=B8/r4TE88KBFe/fJp4nQllCvz0dPP4iprEYLfhfa5iniwT2lIhF3oLmxgrdfca3LDcCczz 6L7duTwf6VqLZ9UNWrUZT5EGA96CXLb+mbMlNLl0XK/vLgNXPKMcQR+ooglAROrf9IHNW9 ixI9Y46ZGWRPsZ9R4VymKpup04WAa3kSnKMxJBAY0GNaCoTib8UcvvrX83wY2aSrwVUARn qMf0OTsVCEDjkmkDBSR0W0edATMrGoVfBbd/RrqLdnzayGX87aCE9XB+TiY904OkFHfy6s Oqh1+/Xg5xNe+kFChQTtLyO6lHOggWfuetVJc+1vNJIg6v6f1VpUQvQ0OlGq8g== From: Adolf Belka To: development@lists.ipfire.org Cc: Adolf Belka Subject: [PATCH 05/14] gnump3d: Fix build warning - chown: warning: '.' should be ':' Date: Mon, 25 May 2026 13:55:48 +0200 Message-ID: <20260525115557.3631627-5-adolf.belka@ipfire.org> In-Reply-To: <20260525115557.3631627-1-adolf.belka@ipfire.org> References: <20260525115557.3631627-1-adolf.belka@ipfire.org> Precedence: list List-Id: List-Subscribe: , List-Unsubscribe: , List-Post: List-Help: Sender: Mail-Followup-To: MIME-Version: 1.0 - Replace ownership separator from . to : Signed-off-by: Adolf Belka --- lfs/gnump3d | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lfs/gnump3d b/lfs/gnump3d index 292dee9f6..4bd85e557 100644 --- a/lfs/gnump3d +++ b/lfs/gnump3d @@ -1,7 +1,7 @@ ############################################################################### # # # IPFire.org - A linux based firewall # -# Copyright (C) 2007-2023 IPFire Team # +# Copyright (C) 2007-2026 IPFire Team # # # # This program is free software: you can redistribute it and/or modify # # it under the terms of the GNU General Public License as published by # @@ -34,7 +34,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = gnump3d -PAK_VER = 10 +PAK_VER = 11 DEPS = @@ -92,7 +92,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) cd $(DIR_APP) && make install mkdir -p /var/mp3 echo Folder for music files > /var/mp3/info - chown nobody.nobody /var/mp3 + chown nobody:nobody /var/mp3 install -m 644 $(DIR_SRC)/config/gnump3d/gnump3d.conf /etc/gnump3d/ ln -sf /usr/bin/gnump3d-index /etc/fcron.daily/gnump3d-index From patchwork Mon May 25 11:55:49 2026 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adolf Belka X-Patchwork-Id: 9864 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) (Client CN "mail01.haj.ipfire.org", Issuer "R12" (not verified)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4gPDqX6pzjz3wr4 for ; Mon, 25 May 2026 11:56:08 +0000 (UTC) Received: from mail02.haj.ipfire.org (mail02.haj.ipfire.org [IPv6:2001:678:b28::201]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (Client CN "mail02.haj.ipfire.org", Issuer "E8" (not verified)) by mail01.ipfire.org (Postfix) with ESMTPS id 4gPDqV5mSRz79W for ; Mon, 25 May 2026 11:56:06 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [IPv6:::1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4gPDqT5Ngtz32ds for ; Mon, 25 May 2026 11:56:05 +0000 (UTC) X-Original-To: development@lists.ipfire.org 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) (Client CN "mail01.haj.ipfire.org", Issuer "R12" (not verified)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4gPDqR155Zz33GQ for ; Mon, 25 May 2026 11:56: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 RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4gPDqQ6v7vz3Ws; Mon, 25 May 2026 11:56:02 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1779710163; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=OO5nttmuzSU1nz/bBJm76oWZRFdXejRN9NNCQZa+N48=; b=cJYGhBwNT9VZhozTdqg73vrhNXBklZi/3MPXUQjVd2tr7pIt+aVo+0PfHglSzK16kAHWim vtiLQX4BS9OwNvBg== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1779710163; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=OO5nttmuzSU1nz/bBJm76oWZRFdXejRN9NNCQZa+N48=; b=nAgAr1/nitN9ONzzpmVaB33f5B9E/reD3QM0jbNW0LkS+EUXy0u+DHlvW0mbEOLFiEx+dp V2SbuObCIFhR35gNOZkDhiBH43lV5/VQrPVTUz6R+Y0hoVWlABJfxoNThV94LkcG5DzLLL Uhp0G5nk1dVKZTFNhZABYy2SdC7IcZkfP5gmBHrUKpcwx1HL5n+zrkhDAtImeL8Daw4Xou qPQWaSatDoem9Roco6iz4cundIcyNYMSvEgctTbfl+bfat9UiislkEOxTGJBtOswhqKyH6 QLK/N/xi4o7Wc7qdJnuH7z4r0z+UTLbWIrbfNqB9PtArsnsF78UQyGBvwGK9tg== From: Adolf Belka To: development@lists.ipfire.org Cc: Adolf Belka Subject: [PATCH 06/14] guardian: Fix build warning - chown: warning: '.' should be ':' Date: Mon, 25 May 2026 13:55:49 +0200 Message-ID: <20260525115557.3631627-6-adolf.belka@ipfire.org> In-Reply-To: <20260525115557.3631627-1-adolf.belka@ipfire.org> References: <20260525115557.3631627-1-adolf.belka@ipfire.org> Precedence: list List-Id: List-Subscribe: , List-Unsubscribe: , List-Post: List-Help: Sender: Mail-Followup-To: MIME-Version: 1.0 - Replace ownership separator from . to : Signed-off-by: Adolf Belka --- lfs/guardian | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lfs/guardian b/lfs/guardian index 6eaa50aac..268cadd1e 100644 --- a/lfs/guardian +++ b/lfs/guardian @@ -1,7 +1,7 @@ ############################################################################### # # # IPFire.org - A linux based firewall # -# Copyright (C) 2007-2022 IPFire Team # +# Copyright (C) 2007-2026 IPFire Team # # # # This program is free software: you can redistribute it and/or modify # # it under the terms of the GNU General Public License as published by # @@ -35,7 +35,7 @@ DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = guardian -PAK_VER = 27 +PAK_VER = 28 DEPS = perl-inotify2 perl-Net-IP @@ -94,7 +94,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) # Create config directory and create files. -mkdir -pv /var/ipfire/guardian - chown nobody.nobody /var/ipfire/guardian + chown nobody:nobody /var/ipfire/guardian # Create directory and file for logging. -mkdir -pv /var/log/guardian From patchwork Mon May 25 11:55:50 2026 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adolf Belka X-Patchwork-Id: 9865 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) (Client CN "mail01.haj.ipfire.org", Issuer "R12" (not verified)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4gPDqj2p7lz3wh2 for ; Mon, 25 May 2026 11:56:17 +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) (Client CN "mail02.haj.ipfire.org", Issuer "E8" (not verified)) by mail01.ipfire.org (Postfix) with ESMTPS id 4gPDqd0x8cz7Pw for ; Mon, 25 May 2026 11:56:13 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [IPv6:::1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4gPDqZ4pGJz331X for ; Mon, 25 May 2026 11:56:10 +0000 (UTC) X-Original-To: development@lists.ipfire.org 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 server-signature ECDSA (secp384r1 raw public key) server-digest SHA384 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mail01.haj.ipfire.org", Issuer "R12" (not verified)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4gPDqS1xj9z330C for ; Mon, 25 May 2026 11:56:04 +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 RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4gPDqR0ynjz3wG; Mon, 25 May 2026 11:56:03 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1779710163; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=9nbU9HEB/MA7YuEL0oEdKVZf33NolBNIz0othkFudvg=; b=fDfE1Ij3fCa4jdtFiD1/OH5qs8VMb1ITF8VERNEoNmMxt7jZqtnA8kCfzxLHXUbyRzNR31 ClD2kaxXgfCObfAQ== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1779710163; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=9nbU9HEB/MA7YuEL0oEdKVZf33NolBNIz0othkFudvg=; b=I31j6D/qVnGz6L526MOCXLSnG5mkk9urXWYoYqy0l8qXz7tN7GnlWMYJzDsOJSriZ2sBDQ 21FYBKVKf8PtRJ5ThDkzX21BwPeEdsgixURUNNcO5Xjy5jqEDcAMsyWO8juoA8bGUer2+h QtRzVOwwwDhNRgQoR1SaNSo3zjmJJGk4jWk5KjIGOVOcUBLW87mFC624E3StdhCQYf1xTs QOK7xS5ijqupaOsnZHNVyO8AonvPWJBxANq/UoLGgHaUpNy2WBMilQtRHTLOTH7/3hMu7C 9Q+4CSwG1rQO9yGpge4szHkZkYc+faK4iqplidJ0NSVUN9ElhdpSZK3T8ph5JQ== From: Adolf Belka To: development@lists.ipfire.org Cc: Adolf Belka Subject: [PATCH 07/14] iptraf-ng: Fix build warning - chown: warning: '.' should be ':' Date: Mon, 25 May 2026 13:55:50 +0200 Message-ID: <20260525115557.3631627-7-adolf.belka@ipfire.org> In-Reply-To: <20260525115557.3631627-1-adolf.belka@ipfire.org> References: <20260525115557.3631627-1-adolf.belka@ipfire.org> Precedence: list List-Id: List-Subscribe: , List-Unsubscribe: , List-Post: List-Help: Sender: Mail-Followup-To: MIME-Version: 1.0 - Replace ownership separator from . to : Signed-off-by: Adolf Belka --- lfs/iptraf-ng | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lfs/iptraf-ng b/lfs/iptraf-ng index f5e07352d..30d40253e 100644 --- a/lfs/iptraf-ng +++ b/lfs/iptraf-ng @@ -1,7 +1,7 @@ ############################################################################### # # # IPFire.org - A linux based firewall # -# Copyright (C) 2007-2025 IPFire Team # +# Copyright (C) 2007-2026 IPFire Team # # # # This program is free software: you can redistribute it and/or modify # # it under the terms of the GNU General Public License as published by # @@ -34,7 +34,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = iptraf-ng -PAK_VER = 5 +PAK_VER = 6 DEPS = @@ -90,7 +90,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) # Directory install -mkdir -vp /var/log/iptraf-ng chmod 750 /var/log/iptraf-ng - chown root.root /var/log/iptraf-ng + chown root:root /var/log/iptraf-ng # Install logrotate install -v -m 644 $(DIR_SRC)/config/iptraf-ng/iptraf-ng.logrotate \ From patchwork Mon May 25 11:55:51 2026 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adolf Belka X-Patchwork-Id: 9867 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) (Client CN "mail01.haj.ipfire.org", Issuer "R12" (not verified)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4gPDqj3Ftpz3wql for ; Mon, 25 May 2026 11:56:17 +0000 (UTC) Received: from mail02.haj.ipfire.org (mail02.haj.ipfire.org [IPv6:2001:678:b28::201]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (Client CN "mail02.haj.ipfire.org", Issuer "E8" (not verified)) by mail01.ipfire.org (Postfix) with ESMTPS id 4gPDqd20tjz7Hx for ; Mon, 25 May 2026 11:56:13 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [IPv6:::1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4gPDqZ5J0bz34yk for ; Mon, 25 May 2026 11:56:10 +0000 (UTC) X-Original-To: development@lists.ipfire.org 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 server-signature ECDSA (secp384r1 raw public key) server-digest SHA384 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mail01.haj.ipfire.org", Issuer "R12" (not verified)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4gPDqS23qHz34VL for ; Mon, 25 May 2026 11:56:04 +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 RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4gPDqR25Wfz3Ws; Mon, 25 May 2026 11:56:03 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1779710163; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=T+OyanB3IuvZIF+em1oxocMxKm0rSoUK7bDqekj+rk8=; b=LBv+TgcATzLZeVg9/hvIentJHzCED9AIkQBJ/2ZliWq8hJRt1sOBg3K233+Awp4uoBqiKw d78ZyLzEPdYnFsAg== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1779710163; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=T+OyanB3IuvZIF+em1oxocMxKm0rSoUK7bDqekj+rk8=; b=KQ39lNC8w3OcsBUjuc+0Q9FbTHWHsHTbpiIiMkCRg+G0Fzl+PnZXKJqSXZbIEUfoWgenIn 77K95VtWcCUtUTBDjLVVZX5aXMn37g3Aub4yOhPT6lASp89YUubP5/s1mrlDJt6506cmW8 JZ0VFtimTANUC/MHeOo2QLgPjvqySYJm+wMouag7RZKadzV1KQo0QnbkpRsF66+HQeuxip pZXNZI5FLB+/DObGDjIiYFYDEubCjn/DV6Dzl6pgk8PMAzGnUyXDmL3lAKDxn33v+W4qsZ oN7lqZc80l3qPElJ55Sy49GrsM3PyzGrdxbxa2H2CxVsn/C7qYdVTYOUHxaqXg== From: Adolf Belka To: development@lists.ipfire.org Cc: Adolf Belka Subject: [PATCH 08/14] pakfire: Fix build warning - chown: warning: '.' should be ':' Date: Mon, 25 May 2026 13:55:51 +0200 Message-ID: <20260525115557.3631627-8-adolf.belka@ipfire.org> In-Reply-To: <20260525115557.3631627-1-adolf.belka@ipfire.org> References: <20260525115557.3631627-1-adolf.belka@ipfire.org> Precedence: list List-Id: List-Subscribe: , List-Unsubscribe: , List-Post: List-Help: Sender: Mail-Followup-To: MIME-Version: 1.0 - Replace ownership separator from . to : Signed-off-by: Adolf Belka --- lfs/pakfire | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lfs/pakfire b/lfs/pakfire index 2e75f7f68..8b9a7f92b 100644 --- a/lfs/pakfire +++ b/lfs/pakfire @@ -1,7 +1,7 @@ ############################################################################### # # # IPFire.org - A linux based firewall # -# Copyright (C) 2007-2025 IPFire Team # +# Copyright (C) 2007-2026 IPFire Team # # # # This program is free software: you can redistribute it and/or modify # # it under the terms of the GNU General Public License as published by # @@ -56,7 +56,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) sed -e "s/@VERSION@/$(PAKFIRE_VERSION)/g" \ < $(DIR_APP)/pakfire.conf \ > $(DIR_APP)/etc/pakfire.conf - chown root.root $(DIR_APP) -R + chown root:root $(DIR_APP) -R chmod 755 $(DIR_APP)/pakfire ln -sf ../../var/log/pakfire /opt/pakfire/logs ln -sf ../../var/cache/pakfire /opt/pakfire/cache From patchwork Mon May 25 11:55:52 2026 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adolf Belka X-Patchwork-Id: 9870 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) (Client CN "mail01.haj.ipfire.org", Issuer "R12" (not verified)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4gPDqj4Wg0z3wr7 for ; Mon, 25 May 2026 11:56:17 +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) (Client CN "mail02.haj.ipfire.org", Issuer "E8" (not verified)) by mail01.ipfire.org (Postfix) with ESMTPS id 4gPDqd47pnz7vb for ; Mon, 25 May 2026 11:56:13 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [IPv6:::1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4gPDqZ6HPQz33gQ for ; Mon, 25 May 2026 11:56:10 +0000 (UTC) X-Original-To: development@lists.ipfire.org 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 server-signature ECDSA (secp384r1 raw public key) server-digest SHA384 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mail01.haj.ipfire.org", Issuer "R12" (not verified)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4gPDqS23fpz3323 for ; Mon, 25 May 2026 11:56:04 +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 RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4gPDqR3CgWz5Gw; Mon, 25 May 2026 11:56:03 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1779710163; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=hqGtQ/J0KQ29mQG1z6X6fnz2mCU2P+YdJe/fep+7cPo=; b=WqVp822wTFFkce0Uw3PnVY/3uPqK8h8fJikQRVDAaDVhLIT8aObix8ZpHvnrj5cMh3sMDJ SPVmESbhD4OztBCw== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1779710163; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=hqGtQ/J0KQ29mQG1z6X6fnz2mCU2P+YdJe/fep+7cPo=; b=WvrEJCC3vwOpYJeEK0kIXKZE9buzgZy7Lywr5XJAqECmhdw+XT7om2Ezm3Kp2boreVfg9S MM0/QLMA3PHLLauD7QhgnMT6zSAHZEDn8bK1+vQsuGh2h+ELzcwv4HddpyZrup2D/68rMX b2VUrOoGCgtyUL9+AdeDaUMJo0+FKa/sO2HfEGuDnor+u2eLbR9ohL0RTkY1daPnUJTUPV 9X3ZV9tXqvvzs7o7IjRPK8+F/ghLFIalPl9qtuJIdvnxR6QQQV67yTXps4G6zP0/sIafzJ M4/Qo2E0JLawtkD8+DcqzCsGHZtRVxIlU9GX14QIHix5osjhaZ/m3PeWy0B34A== From: Adolf Belka To: development@lists.ipfire.org Cc: Adolf Belka Subject: [PATCH 09/14] core203: Ship pakfire Date: Mon, 25 May 2026 13:55:52 +0200 Message-ID: <20260525115557.3631627-9-adolf.belka@ipfire.org> In-Reply-To: <20260525115557.3631627-1-adolf.belka@ipfire.org> References: <20260525115557.3631627-1-adolf.belka@ipfire.org> Precedence: list List-Id: List-Subscribe: , List-Unsubscribe: , List-Post: List-Help: Sender: Mail-Followup-To: MIME-Version: 1.0 Signed-off-by: Adolf Belka --- config/rootfiles/core/203/filelists/pakfire | 1 + 1 file changed, 1 insertion(+) create mode 120000 config/rootfiles/core/203/filelists/pakfire diff --git a/config/rootfiles/core/203/filelists/pakfire b/config/rootfiles/core/203/filelists/pakfire new file mode 120000 index 000000000..d5b1d0d03 --- /dev/null +++ b/config/rootfiles/core/203/filelists/pakfire @@ -0,0 +1 @@ +../../../common/pakfire \ No newline at end of file From patchwork Mon May 25 11:55:53 2026 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adolf Belka X-Patchwork-Id: 9869 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) (Client CN "mail01.haj.ipfire.org", Issuer "R12" (not verified)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4gPDqj3k7xz3wr4 for ; Mon, 25 May 2026 11:56:17 +0000 (UTC) Received: from mail02.haj.ipfire.org (mail02.haj.ipfire.org [IPv6:2001:678:b28::201]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (Client CN "mail02.haj.ipfire.org", Issuer "E8" (not verified)) by mail01.ipfire.org (Postfix) with ESMTPS id 4gPDqd1zDMz7Dh for ; Mon, 25 May 2026 11:56:13 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [IPv6:::1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4gPDqZ5FPkz34Pc for ; Mon, 25 May 2026 11:56:10 +0000 (UTC) X-Original-To: development@lists.ipfire.org 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 4gPDqS250lz34VN for ; Mon, 25 May 2026 11:56:04 +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 RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4gPDqR4gwTz6jJ; Mon, 25 May 2026 11:56:03 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1779710163; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=NTAYGt4aTYc0E51tgTpDHvO0sRxQJV6MS3wN1Cy2EPA=; b=NkVZUaY676fg1A0DRx7+Q117LNGD69SNGEd84Ioo1JTlNs7saVm8g/NXhOwK8tj2jSERFJ 14qmgCVzicGygNAw== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1779710163; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=NTAYGt4aTYc0E51tgTpDHvO0sRxQJV6MS3wN1Cy2EPA=; b=lmNc9Sin2qb6fT1tsbbO3Kvrgjb85J4PLlMBZqtpYWQY9A9KY6BClbzzPStgxF87EJ+ffd uMvrO/xRAuE3gSP8oxqHW6xtRUvVERWoxTqsTv/wGGMi10bLMeaTNEc6AfghkgL5pA/1Td EhYSLhmALw0gvRq8nAC5SetEAqdMusrzYkPCak3VgfhaWxSu+J1Y3eQBTmUeXkIjSM+6Ck aU2rtU0ydnpAiGjHwsIwzwWW5Uo/X/6PRzDZazbNG6fSuqktYT7iCSDCZSnhckr+eZbyjt 7sFeqbbtVnvD7Vkt2V2bsOviSYw62th+plFFCXy/ijWute+SR35u5Bdu4YYNPg== From: Adolf Belka To: development@lists.ipfire.org Cc: Adolf Belka Subject: [PATCH 10/14] proxy-accounting: Fix build warning - chown: warning: '.' should be ':' Date: Mon, 25 May 2026 13:55:53 +0200 Message-ID: <20260525115557.3631627-10-adolf.belka@ipfire.org> In-Reply-To: <20260525115557.3631627-1-adolf.belka@ipfire.org> References: <20260525115557.3631627-1-adolf.belka@ipfire.org> Precedence: list List-Id: List-Subscribe: , List-Unsubscribe: , List-Post: List-Help: Sender: Mail-Followup-To: MIME-Version: 1.0 - Replace ownership separator from . to : Signed-off-by: Adolf Belka --- lfs/proxy-accounting | 23 +++++++++++++++++++---- 1 file changed, 19 insertions(+), 4 deletions(-) diff --git a/lfs/proxy-accounting b/lfs/proxy-accounting index 125fa127d..2f0430ab9 100644 --- a/lfs/proxy-accounting +++ b/lfs/proxy-accounting @@ -1,6 +1,21 @@ ############################################################################### -# IPFire.org - An Open Source Firewall Solution # -# Copyright (C) 2007-2018 IPFire Team # +# # +# IPFire.org - A linux based firewall # +# Copyright (C) 2007-2026 IPFire Team # +# # +# This program is free software: you can redistribute it and/or modify # +# it under the terms of the GNU General Public License as published by # +# the Free Software Foundation, either version 3 of the License, or # +# (at your option) any later version. # +# # +# This program is distributed in the hope that it will be useful, # +# but WITHOUT ANY WARRANTY; without even the implied warranty of # +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # +# GNU General Public License for more details. # +# # +# You should have received a copy of the GNU General Public License # +# along with this program. If not, see . # +# # ############################################################################### ############################################################################### @@ -17,7 +32,7 @@ THISAPP = proxy-accounting-$(VER) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = proxy-accounting -PAK_VER = 14 +PAK_VER = 15 DEPS = perl-File-ReadBackwards @@ -69,7 +84,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) #activate hourly logging of proxy logfile ln -sf /usr/local/bin/acct.pl /etc/fcron.hourly/squid-accounting - chown -R nobody.nobody /var/ipfire/accounting + chown -R nobody:nobody /var/ipfire/accounting @rm -rf $(DIR_APP) @$(POSTBUILD) From patchwork Mon May 25 11:55:54 2026 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adolf Belka X-Patchwork-Id: 9866 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) (Client CN "mail01.haj.ipfire.org", Issuer "R12" (not verified)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4gPDqj37cHz3wmP for ; Mon, 25 May 2026 11:56:17 +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) (Client CN "mail02.haj.ipfire.org", Issuer "E8" (not verified)) by mail01.ipfire.org (Postfix) with ESMTPS id 4gPDqd2Fhxz7Qx for ; Mon, 25 May 2026 11:56:13 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [IPv6:::1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4gPDqZ5hpwz36Wr for ; Mon, 25 May 2026 11:56:10 +0000 (UTC) X-Original-To: development@lists.ipfire.org 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) (Client CN "mail01.haj.ipfire.org", Issuer "R12" (not verified)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4gPDqS2mXPz34X2 for ; Mon, 25 May 2026 11:56:04 +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 RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4gPDqS15Pjz6Zd; Mon, 25 May 2026 11:56:04 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1779710164; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=olmcbJsx+V0aZ00vANzBdEFuDynZee/ZpNN8vmO1efc=; b=kEQkwqPXtkBO/WPNDlqaQzelj8WZ7LK1MJx88DjUR0HspXNnGpvhBlWRAd7MjGhApo4qH3 L/WHITMfHLgQR6Cg== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1779710164; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=olmcbJsx+V0aZ00vANzBdEFuDynZee/ZpNN8vmO1efc=; b=RCVbxPudGqFE9IyhD2fm/n+W8iOA9iKEN6xOJJ+GE9ngEpJiC11K697K/O4vmyRDedzXhY 5TSKgsV6MtRnMs56ZvIeAI2KeWnV5vxMQXqjHCWcQbA+hV7D2zYmhmAIBJn+3uHkuynX0o NG3/1rzM1dUWFhw8HEjd8PHo5Q/a48zdoMYDAyQo/XnmsyQi98KyalBM5mMjkSZwWhunEs +eaDLmdJlg9dR1iLFrI4OcxQtorPdLYIMTmSKk48YPk0oI9CJ/8C9hvtKGjl+xkb5Cgukb Ua3fccFb3Tz4uMchKIYYGaZzhxV7UCV68TG1mCAsHe6xwTCEl1E15m2ind3Eyw== From: Adolf Belka To: development@lists.ipfire.org Cc: Adolf Belka Subject: [PATCH 11/14] squid: Fix build warning - chown: warning: '.' should be ':' Date: Mon, 25 May 2026 13:55:54 +0200 Message-ID: <20260525115557.3631627-11-adolf.belka@ipfire.org> In-Reply-To: <20260525115557.3631627-1-adolf.belka@ipfire.org> References: <20260525115557.3631627-1-adolf.belka@ipfire.org> Precedence: list List-Id: List-Subscribe: , List-Unsubscribe: , List-Post: List-Help: Sender: Mail-Followup-To: MIME-Version: 1.0 - Replace ownership separator from . to : Signed-off-by: Adolf Belka --- lfs/squid | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lfs/squid b/lfs/squid index a4de8adb4..0271328ff 100644 --- a/lfs/squid +++ b/lfs/squid @@ -172,9 +172,9 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) chown -R nobody:nobody /var/ipfire/updatexlrator chown -R root:root /var/ipfire/updatexlrator/bin chown root:root /var/ipfire/updatexlrator/updxlrator-lib.pl - chown nobody.squid /var/updatecache - chown nobody.squid /var/updatecache/download - chown nobody.squid /var/updatecache/metadata + chown nobody:squid /var/updatecache + chown nobody:squid /var/updatecache/download + chown nobody:squid /var/updatecache/metadata chmod 775 /var/updatecache chmod 775 /var/updatecache/download chmod 775 /var/updatecache/metadata @@ -184,7 +184,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) chown squid:squid /var/log/squid ln -sf /usr/lib/squid /usr/lib/squid/auth cp -f $(DIR_SRC)/config/proxy/proxy.pac /srv/web/ipfire/html/proxy.pac - chown nobody.nobody /srv/web/ipfire/html/proxy.pac + chown nobody:nobody /srv/web/ipfire/html/proxy.pac ln -sf /srv/web/ipfire/html/proxy.pac /srv/web/ipfire/html/wpad.dat # Copy stylesheets for the errorpages From patchwork Mon May 25 11:55:55 2026 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adolf Belka X-Patchwork-Id: 9871 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) (Client CN "mail01.haj.ipfire.org", Issuer "R12" (not verified)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4gPDqj65WVz3wr8 for ; Mon, 25 May 2026 11:56:17 +0000 (UTC) Received: from mail02.haj.ipfire.org (mail02.haj.ipfire.org [IPv6:2001:678:b28::201]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (Client CN "mail02.haj.ipfire.org", Issuer "E8" (not verified)) by mail01.ipfire.org (Postfix) with ESMTPS id 4gPDqd6Gj4z7Hp for ; Mon, 25 May 2026 11:56:13 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [IPv6:::1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4gPDqb08wCz36X2 for ; Mon, 25 May 2026 11:56:11 +0000 (UTC) X-Original-To: development@lists.ipfire.org 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) (Client CN "mail01.haj.ipfire.org", Issuer "R12" (not verified)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4gPDqS5wFhz33v0 for ; Mon, 25 May 2026 11:56:04 +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 RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4gPDqS2MK5z6jJ; Mon, 25 May 2026 11:56:04 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1779710164; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=lbCX420HD6Y54sYs+Se+kHuOSyRMcXRrbTyn0m/9gHM=; b=Cbg4sq7LE879hZGH4ISk15XjY75g3MmDM8a1Vc4atD02mYGmXPxn3MGoYWr6bwvkjfa+W/ d2lbgDpAm2QJdGDQ== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1779710164; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=lbCX420HD6Y54sYs+Se+kHuOSyRMcXRrbTyn0m/9gHM=; b=NEmL3J/q/qTCf0lfx7p3WEteKxUasfNAhUzfGNpB+3k3fvaRqILYukjT6sc8GUVxLrtRIq 0PPgE1gnVr7tFMYhWs60yHlhL/PC/0G7X9P6TayF7QXOvqlH6NssC5Q36jkY9hsfsblI1p +fwBxx3e8sV82fmdXoqqauU69K2JqDUfcVo/jJgGVgN5+eacJ1W9rwnoRgF9ZAL46k2r9l WZToGvJYKGSTMW4ZnmHwOrrOZzBWHnZ3HT1ajdASgwbN8plxM8FUAJa9yImYz6PsuP3SVe xf7JgvA+wAfAOgBPvB3V87NCdvxrU0/W/x+H9Ots5wtHe7o16VbtCdB4vRlF9A== From: Adolf Belka To: development@lists.ipfire.org Cc: Adolf Belka Subject: [PATCH 12/14] stage2: Fix build warning - chown: warning: '.' should be ':' Date: Mon, 25 May 2026 13:55:55 +0200 Message-ID: <20260525115557.3631627-12-adolf.belka@ipfire.org> In-Reply-To: <20260525115557.3631627-1-adolf.belka@ipfire.org> References: <20260525115557.3631627-1-adolf.belka@ipfire.org> Precedence: list List-Id: List-Subscribe: , List-Unsubscribe: , List-Post: List-Help: Sender: Mail-Followup-To: MIME-Version: 1.0 - Replace ownership separator from . to : Signed-off-by: Adolf Belka --- lfs/stage2 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lfs/stage2 b/lfs/stage2 index c5130e961..1cb983e5f 100644 --- a/lfs/stage2 +++ b/lfs/stage2 @@ -1,7 +1,7 @@ ############################################################################### # # # IPFire.org - A linux based firewall # -# Copyright (C) 2007-2022 IPFire Team # +# Copyright (C) 2007-2026 IPFire Team # # # # This program is free software: you can redistribute it and/or modify # # it under the terms of the GNU General Public License as published by # @@ -131,7 +131,7 @@ endif -mkdir -v /var/{lock,log,mail,spool,empty} -mkdir -pv /var/{opt,cache,lib/misc,local} -mkdir -pv /var/log/{counter,calamaris} - chown nobody.nobody /var/log/calamaris + chown nobody:nobody /var/log/calamaris touch /var/log/{btmp,lastlog,wtmp} chmod -v 600 /var/log/btmp chgrp -v utmp /var/log/lastlog From patchwork Mon May 25 11:55:56 2026 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adolf Belka X-Patchwork-Id: 9872 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) (Client CN "mail01.haj.ipfire.org", Issuer "R12" (not verified)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4gPDqj6xCgz3wr9 for ; Mon, 25 May 2026 11:56:17 +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) (Client CN "mail02.haj.ipfire.org", Issuer "E8" (not verified)) by mail01.ipfire.org (Postfix) with ESMTPS id 4gPDqf0XwYz76L for ; Mon, 25 May 2026 11:56:14 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [IPv6:::1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4gPDqb0rCpz34Ph for ; Mon, 25 May 2026 11:56:11 +0000 (UTC) X-Original-To: development@lists.ipfire.org 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) (Client CN "mail01.haj.ipfire.org", Issuer "R12" (not verified)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4gPDqT5Nrjz32xp for ; Mon, 25 May 2026 11:56:05 +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 RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4gPDqS3wWHz77G; Mon, 25 May 2026 11:56:04 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1779710164; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=T3yUp3SQXZ6Wz3weujsSIBv8fCral7rHYsHMYqqVFoE=; b=hiHtAjoNXvMtxQySk6nbIikoOrVNaJXVI2xP4veiJAD8/rgw0V+QxJzq/9Z1Ja8s9BOAzb /qW/K/L0Oj3OWbAw== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1779710164; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=T3yUp3SQXZ6Wz3weujsSIBv8fCral7rHYsHMYqqVFoE=; b=d2p9JdjZiZWacKNV37stYKa+G1IPF9PwsgR0Hz8SnqUvXaPaDjHm+r8Its0oaxVT/oe24m vFUhYHZZf+WxBMOvdMm2qZvSqFlTV/JnEbilYGAaYWhlC5GdTEqqn8SxBAUby3HPWqZmVY h67kHI/EtyvHCpT2nUOIje/C0TcncNk0EPDccaucg6x4SB7SNqH6htMFavPAwOnjx8aPfR QauE8lxvQi4tL7vm+0Yvn+Ng8wp7lbdAOpdw9Q78k8oJRVn8ah8lanCpONT0Hohm1Pq/PY /30gJJ57Mzwni+nAksmZP3x7+I7KKjzNqZ3fKGJMqGrmbqymNqX5L9obgxExPg== From: Adolf Belka To: development@lists.ipfire.org Cc: Adolf Belka Subject: [PATCH 13/14] core203: Ship stage2 Date: Mon, 25 May 2026 13:55:56 +0200 Message-ID: <20260525115557.3631627-13-adolf.belka@ipfire.org> In-Reply-To: <20260525115557.3631627-1-adolf.belka@ipfire.org> References: <20260525115557.3631627-1-adolf.belka@ipfire.org> Precedence: list List-Id: List-Subscribe: , List-Unsubscribe: , List-Post: List-Help: Sender: Mail-Followup-To: MIME-Version: 1.0 Signed-off-by: Adolf Belka --- config/rootfiles/core/203/filelists/x86_64/stage2 | 1 + 1 file changed, 1 insertion(+) create mode 120000 config/rootfiles/core/203/filelists/x86_64/stage2 diff --git a/config/rootfiles/core/203/filelists/x86_64/stage2 b/config/rootfiles/core/203/filelists/x86_64/stage2 new file mode 120000 index 000000000..2c9e16caa --- /dev/null +++ b/config/rootfiles/core/203/filelists/x86_64/stage2 @@ -0,0 +1 @@ +../../../../common/x86_64/stage2 \ No newline at end of file From patchwork Mon May 25 11:55:57 2026 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adolf Belka X-Patchwork-Id: 9873 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) (Client CN "mail01.haj.ipfire.org", Issuer "R12" (not verified)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4gPDqk2hkBz3wh2 for ; Mon, 25 May 2026 11:56:18 +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) (Client CN "mail02.haj.ipfire.org", Issuer "E8" (not verified)) by mail01.ipfire.org (Postfix) with ESMTPS id 4gPDqf3pW2z762 for ; Mon, 25 May 2026 11:56:14 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [IPv6:::1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4gPDqb3XfFz33ww for ; Mon, 25 May 2026 11:56:11 +0000 (UTC) X-Original-To: development@lists.ipfire.org 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 4gPDqT6xSjz339x for ; Mon, 25 May 2026 11:56:05 +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 RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4gPDqS5yrPz78l; Mon, 25 May 2026 11:56:04 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1779710164; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=K2xA1UJcj4wSKDv69Rdz5F4lCITJxhBUqznPk/ONgU8=; b=w3diAN09soa3rhtmKkDxNv5zkmaHKoJQMTRjhUK6OsskmuZg9w6IeJcyPgP5JE0CGwHFl4 VTDmvtrAZi9zHQCQ== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1779710164; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=K2xA1UJcj4wSKDv69Rdz5F4lCITJxhBUqznPk/ONgU8=; b=WqKEgHRud47iPazpPi4JxFq+1Rxo/eyJQZrD+I5nSQLn7/75afAnVBTcqCgBlqXRxbW7m7 A8Fdy5FRGI+YNH12UwcM0eU+vgK+BoWCbiRXj63akFTuEp+EZMG02A/v/7HpzM18E/iiTe u/2oPQQeqzBnhfUKXlr6r4yFbgX/Hhz90IBtGkk7QHhLf+ofyNMaA10qQp8pHNjZiccca7 3rGvbueUPk7C5ZvpXNU+wBG2/zjFZbMPVGQTdw7be26bdY3OUYRED+bWVQFwnL9RYLR6NJ X91AEru4a37adgV85cbos53LmZiFJTdfyaR03Z0mDQDkvtse9Cm7gPE0GcEP5A== From: Adolf Belka To: development@lists.ipfire.org Cc: Adolf Belka Subject: [PATCH 14/14] transmission: Fix build warning - chown: warning: '.' should be ':' Date: Mon, 25 May 2026 13:55:57 +0200 Message-ID: <20260525115557.3631627-14-adolf.belka@ipfire.org> In-Reply-To: <20260525115557.3631627-1-adolf.belka@ipfire.org> References: <20260525115557.3631627-1-adolf.belka@ipfire.org> Precedence: list List-Id: List-Subscribe: , List-Unsubscribe: , List-Post: List-Help: Sender: Mail-Followup-To: MIME-Version: 1.0 - Replace ownership separator from . to : Signed-off-by: Adolf Belka --- lfs/transmission | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lfs/transmission b/lfs/transmission index e93bca069..10e2bf271 100644 --- a/lfs/transmission +++ b/lfs/transmission @@ -34,7 +34,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = transmission -PAK_VER = 27 +PAK_VER = 28 DEPS = @@ -91,7 +91,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) # Install configuration files. -mkdir -pv /etc/transmission cp -vf $(DIR_SRC)/config/transmission/* /etc/transmission/ - chown -Rv nobody.nobody /etc/transmission + chown -Rv nobody:nobody /etc/transmission #install initscripts $(call INSTALL_INITSCRIPTS,$(SERVICES))