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