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))