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