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 4gPDqb5ggRz34Rx for ; Mon, 25 May 2026 11:56:11 +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 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 Content-Transfer-Encoding: 8bit - 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) -- 2.54.0