From debbugs-submit-bounces@debbugs.gnu.org Sat Oct 19 08:17:20 2024 Received: (at submit) by debbugs.gnu.org; 19 Oct 2024 12:17:20 +0000 Received: from localhost ([127.0.0.1]:41762 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1t28OW-0004vU-8f for submit@debbugs.gnu.org; Sat, 19 Oct 2024 08:17:20 -0400 Received: from lists.gnu.org ([209.51.188.17]:43488) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1t28OU-0004vJ-IE for submit@debbugs.gnu.org; Sat, 19 Oct 2024 08:17:19 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1t28O6-0002qw-A7 for guix-patches@gnu.org; Sat, 19 Oct 2024 08:16:54 -0400 Received: from relay5-d.mail.gandi.net ([217.70.183.197]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1t28O3-0006jj-Fb for guix-patches@gnu.org; Sat, 19 Oct 2024 08:16:54 -0400 Received: by mail.gandi.net (Postfix) with ESMTPSA id 00B4A1C0005; Sat, 19 Oct 2024 12:16:47 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=fabionatali.com; s=gm1; t=1729340208; 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=ubuCs34W2N1NAb976JJlgsPqA9gSNsEzqX3AORxDY1M=; b=N72UGbGOxf2mun6Kr/cceI8QogExs16FCx3DeEqRrtDiDf7w8LzTg5v86VgYXAv58BR8Y2 aYf093MC2YTd+myq2qpyQ//danmDEuFgSFlfzp8NsfoIWNiqD/29Nrl6P6Cw8OxtIzfQ0k FIgx7XVv4eMrBgOyB8QrHUvX1z3BcCq58yvvwleF3tyECuRVeR3lon2BI2uKDiM0QJpAdK wD7E/QdtTQtHMEtgWEh0w9aNM4tgK0q/7JmLivY+aSOjI666V/uZ6XoKkIeCx1++lSujHp 2aEqXKnMR8hqerURhbDsfEkaduQdhfjs9o85Y4IIa7dpfaCCsosrV9DxiwyQvQ== From: Fabio Natali To: guix-patches@gnu.org Subject: [PATCH] gnu: services: Fix readymedia service. Date: Sat, 19 Oct 2024 13:11:43 +0100 Message-ID: <9c20a761e4a4812bd04e1112ab0cdfe8f2372f65.1729339847.git.me@fabionatali.com> X-Mailer: git-send-email 2.46.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-GND-Sasl: me@fabionatali.com Received-SPF: pass client-ip=217.70.183.197; envelope-from=me@fabionatali.com; helo=relay5-d.mail.gandi.net X-Spam_score_int: -39 X-Spam_score: -4.0 X-Spam_bar: ---- X-Spam_report: (-4.0 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_DNSWL_LOW=-0.7, RCVD_IN_MSPIKE_H2=-1.25, RCVD_IN_VALIDITY_RPBL_BLOCKED=0.001, RCVD_IN_VALIDITY_SAFE_BLOCKED=0.001, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.6 (-) X-Debbugs-Envelope-To: submit Cc: arunisaac@systemreboot.net, Fabio Natali X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.6 (--) * gnu/services/upnp.scm: Add missing '/n' end-of-line character. Change-Id: Ib2e584f22526f1969098b843c4be6ee386ed809c --- Hi, This is to fix 'readymedia-configuration->config-file'. In its current version, the procedure may generate a corrupt configuration file. This patch fixes things by adding a new line character at the end of every 'media_dir=' line. I hope this looks ok. Thanks, best wishes, Fabio. gnu/services/upnp.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/services/upnp.scm b/gnu/services/upnp.scm index 09121326fe..e5d05add28 100644 --- a/gnu/services/upnp.scm +++ b/gnu/services/upnp.scm @@ -115,7 +115,7 @@ (define (readymedia-configuration->config-file config) (match types (() (list)) (_ (list ","))) - (list path)))) + (list path "\n")))) media-directories) (map (match-lambda ((key . value) base-commit: 48097f511929053468ce6f09e0a24644c90fe670 -- 2.46.0 From debbugs-submit-bounces@debbugs.gnu.org Sat Oct 19 20:54:03 2024 Received: (at 73878) by debbugs.gnu.org; 20 Oct 2024 00:54:04 +0000 Received: from localhost ([127.0.0.1]:45182 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1t2KCp-0006J3-Iz for submit@debbugs.gnu.org; Sat, 19 Oct 2024 20:54:03 -0400 Received: from mugam.systemreboot.net ([139.59.75.54]:51724) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1t2KCl-0006Ia-Nx for 73878@debbugs.gnu.org; Sat, 19 Oct 2024 20:54:01 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=systemreboot.net; s=default; h=Content-Type:MIME-Version:Message-ID:Date: In-Reply-To:Subject:Cc:To:From:Sender:Reply-To:Content-Transfer-Encoding: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:References:List-Id:List-Help: List-Unsubscribe:List-Subscribe:List-Post:List-Owner:List-Archive; bh=65olajOb6QpgBZOQg2SIzulbuQ2WXOy2j5W9wBU9Dj4=; b=ZC/FSVe5bAdeDgwxK/Yl6sgeJJ 5Sz/2e406D8TTqu3xFWQ4WEPsW0lQ8GDHRZN9k7pWLl9na632YAiSZUUYX/hl/XdH7Bhx6VDXh6Fn VLKdlwQzhTcZhoFcOX+TvmyhklnNkoHR2kpwLVTTnWyFCku3P8odJ4X1CscBzcBTPAWCIPrH8jNIV i0WnYtlTFndSH40tOFS9Pt/GgIzLNdygsP7YeCUVdmXnKKjHSUQWnMiSZBWPsnqctftHmHHYiSq9C ZZz4XcaGLmIVQrgftoQ8kNklKStGKmFKNwmOFPavS0aoopSVQyJS1CkkM3pZ9meQvY3gHfrQIvi2v bXb5U4XA==; Received: from [192.168.2.1] (port=39326 helo=localhost) by systemreboot.net with esmtpsa (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.98) (envelope-from ) id 1t2K6J-000000007bA-2EX0; Sun, 20 Oct 2024 01:47:20 +0100 From: Arun Isaac To: 73878@debbugs.gnu.org Subject: Re: [PATCH] gnu: services: Fix readymedia service. In-Reply-To: <9c20a761e4a4812bd04e1112ab0cdfe8f2372f65.1729339847.git.me@fabionatali.com> Date: Sun, 20 Oct 2024 01:53:24 +0100 Message-ID: <87h697bnnf.fsf@systemreboot.net> MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 73878 Cc: Fabio Natali X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Hi Fabio, Thanks for the patch. I'll push this shortly. My laptop is just busy building something else at the moment. Regards, Arun From debbugs-submit-bounces@debbugs.gnu.org Sun Oct 20 07:29:21 2024 Received: (at 73878-done) by debbugs.gnu.org; 20 Oct 2024 11:29:21 +0000 Received: from localhost ([127.0.0.1]:46060 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1t2U7d-00024k-9o for submit@debbugs.gnu.org; Sun, 20 Oct 2024 07:29:21 -0400 Received: from mugam.systemreboot.net ([139.59.75.54]:44272) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1t2U7Y-00024V-V5 for 73878-done@debbugs.gnu.org; Sun, 20 Oct 2024 07:29:19 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=systemreboot.net; s=default; h=Content-Type:MIME-Version:Message-ID:Date: In-Reply-To:Subject:Cc:To:From:Sender:Reply-To:Content-Transfer-Encoding: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:References:List-Id:List-Help: List-Unsubscribe:List-Subscribe:List-Post:List-Owner:List-Archive; bh=rhUIysDV4LePT9lhPmYhUhQL4i6I1SLdt447sBcFcXE=; b=e8e6/Aaq7nS4lYBMoqQ+O+1MAy YE1O1JR/09Q5ktMzjhiUQASr4eqrwu8a9kJKR4Ge4bVmu8awTOBt4NlB6Zr3Mm3N6hI/Jc3r48n6v 73XPYnBZRPG/JVDuzd673fuQSV4Ew2ZVF2FdZLLlFrEXFGUS/V6R13eFjX9VUFROSwrqOIYbqW1kU mQxjjDwUuTZC88R9CYE7Oe/HQQGkOvsc4kKqdvkC1ktGXG8SEHEQEJ+zK2LdmRW/62et48xsKPgZ1 Lv550Ua8sMVtImxWekQoZn0pxkRyLU4J5UXOBft+RajLyOh8B3lo0iX2w+4SizlWkzHqOc+35DBq6 GpJece4A==; Received: from [192.168.2.1] (port=42448 helo=localhost) by systemreboot.net with esmtpsa (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.98) (envelope-from ) id 1t2U16-000000008K4-3Bj8; Sun, 20 Oct 2024 12:22:37 +0100 From: Arun Isaac To: 73878-done@debbugs.gnu.org Subject: Re: [PATCH] gnu: services: Fix readymedia service. In-Reply-To: <87h697bnnf.fsf@systemreboot.net> Date: Sun, 20 Oct 2024 12:28:38 +0100 Message-ID: <87ed4bau8p.fsf@systemreboot.net> MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 73878-done Cc: Fabio Natali X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Pushed, thanks! I also fixed a couple of minor errors in cf33081e18 and 9b835aae10 From unknown Tue Jun 17 20:31:21 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sun, 17 Nov 2024 12:24:15 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator