From debbugs-submit-bounces@debbugs.gnu.org Mon Jan 10 00:58:36 2022 Received: (at submit) by debbugs.gnu.org; 10 Jan 2022 05:58:36 +0000 Received: from localhost ([127.0.0.1]:51660 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n6nhT-0002WC-QM for submit@debbugs.gnu.org; Mon, 10 Jan 2022 00:58:35 -0500 Received: from lists.gnu.org ([209.51.188.17]:33844) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n6nhQ-0002W3-BX for submit@debbugs.gnu.org; Mon, 10 Jan 2022 00:58:34 -0500 Received: from eggs.gnu.org ([209.51.188.92]:53816) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1n6nhP-0001Q9-V3 for guix-patches@gnu.org; Mon, 10 Jan 2022 00:58:32 -0500 Received: from mugam.systemreboot.net ([139.59.75.54]:41210) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1n6nhI-00085t-M2 for guix-patches@gnu.org; Mon, 10 Jan 2022 00:58:31 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=systemreboot.net; s=default; h=Content-Transfer-Encoding:Content-Type: MIME-Version:Message-Id:Date:Subject:Cc:To:From:Sender:Reply-To:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:In-Reply-To:References:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=XC/bi2n55tppM+4HlxTjWR1OWfUQJUHRpTpHccQwuzs=; b=D31Gt+POrPUqXhDMUshfLNbfLp /dGX53Xrnjlw4ZzoSszmzrumTGBuSN3GtQOQtPROqaYxLLSLVOP/8kx/mbtdKQGxgMTPVk+jF5hvk XpzReW0DwmkPa38hHNlzVeWfNca1rOzgt3oAv/epvpqrNxXRIoBsJgnvzgaMFjGeLKsqT7Q9GCHbY LLTlV+GpCeHVW4s6rUBl6inXCy/jn17g1HQ0VZoeD0+YT433esrnKAs9PLPegu7IV/VNxc3tqMNnk Na+UqqKRznLx/zH6s4h/AeCwM0e6CTw/nTBUxXoKE332T13AhFgfcVMJBeyr/31B0uip7vQzuaasD QCOjIDWw==; Received: from [192.168.2.1] (port=19224 helo=localhost.localdomain) by systemreboot.net with esmtpsa (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.95) (envelope-from ) id 1n6nh8-00001M-Ob; Mon, 10 Jan 2022 11:28:14 +0530 From: Arun Isaac To: guix-patches@gnu.org Subject: [PATCH] services: laminar: Set LAMINAR_BIND_RPC environment variable. Date: Mon, 10 Jan 2022 11:28:12 +0530 Message-Id: <20220110055812.19842-1-arunisaac@systemreboot.net> X-Mailer: git-send-email 2.34.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=139.59.75.54; envelope-from=arunisaac@systemreboot.net; helo=mugam.systemreboot.net X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 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, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit Cc: Arun Isaac , Christopher Baines 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.4 (--) Earlier, the bind-rpc field of was not used at all. This was a bug. * gnu/services/ci.scm (laminar-shepherd-service): Use bind-rpc to set LAMINAR_BIND_RPC environment variable. --- gnu/services/ci.scm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gnu/services/ci.scm b/gnu/services/ci.scm index 0c3566bcaf..172f85fe8e 100644 --- a/gnu/services/ci.scm +++ b/gnu/services/ci.scm @@ -1,6 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2018, 2019, 2020, 2021 Christopher Baines -;;; Copyright © 2021 Arun Isaac +;;; Copyright © 2021, 2022 Arun Isaac ;;; ;;; This file is part of GNU Guix. ;;; @@ -84,6 +84,8 @@ (define laminar-shepherd-service #$home-directory) ,(string-append "LAMINAR_BIND_HTTP=" #$bind-http) + ,(string-append "LAMINAR_BIND_RPC=" + #$bind-rpc) ,(string-append "LAMINAR_TITLE=" #$title) ,(string-append "LAMINAR_KEEP_RUNDIRS=" -- 2.34.0 From debbugs-submit-bounces@debbugs.gnu.org Mon Jan 10 01:01:20 2022 Received: (at 53154) by debbugs.gnu.org; 10 Jan 2022 06:01:20 +0000 Received: from localhost ([127.0.0.1]:51665 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n6nk8-0002ci-7y for submit@debbugs.gnu.org; Mon, 10 Jan 2022 01:01:20 -0500 Received: from mugam.systemreboot.net ([139.59.75.54]:50960) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n6nk6-0002cX-UK for 53154@debbugs.gnu.org; Mon, 10 Jan 2022 01:01:19 -0500 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: References: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:List-Id: List-Help:List-Unsubscribe:List-Subscribe:List-Post:List-Owner:List-Archive; bh=FewAaJZbSNA4JTr34ADmTX36ppiy2ReL2W2CX4fzEnk=; b=AjCAWcG246IcD3mBGJzMjnRK37 IDMLGK6VQskKae47ltglPhATQig3J+heIL9xuJJ7fbMsPy7b6wPsF3fwWXCUxQYCNr3hC+1VDAA3N Quy8WFhCusu4b3Wqe5QRE9bfskJjAkfdaliBQnfA4kllUGy5Bx/mNlttG4Z8bg8CW7X9ja8JFyTvt U7rsNt+jbBcxFRxLnvVkqBs7e/pXP0VkLKFm3iAqcH3l+iTrtcYYIwF7Mb+NP10tWT2H6zSdvFJPv Bx1nYqcLfkDdvl7NQPfuOjSQTHfxWOJln2C3maDjiV9fEdPm+Syo0QNeRa6nnCF5VhU91IJQZN0Kb d7lMC5Zw==; Received: from [192.168.2.1] (port=19238 helo=steel) by systemreboot.net with esmtpsa (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.95) (envelope-from ) id 1n6nk4-00001b-5m; Mon, 10 Jan 2022 11:31:16 +0530 From: Arun Isaac To: Christopher Baines Subject: Re: bug#53154: Acknowledgement ([PATCH] services: laminar: Set LAMINAR_BIND_RPC environment variable.) In-Reply-To: References: <20220110055812.19842-1-arunisaac@systemreboot.net> Date: Mon, 10 Jan 2022 11:31:09 +0530 Message-ID: <87zgo486ze.fsf@systemreboot.net> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha256; protocol="application/pgp-signature" X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 53154 Cc: 53154@debbugs.gnu.org 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 (-) --=-=-= Content-Type: text/plain Hi Chris, I have CCed you on this issue, since you wrote the laminar service and might be able to review this patch easily. Thank you! --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQFPBAEBCAA5FiEEf3MDQ/Lwnzx3v3nTLiXui2GAK7MFAmHby6UbHGFydW5pc2Fh Y0BzeXN0ZW1yZWJvb3QubmV0AAoJEC4l7othgCuzsnIH/RyOECdht5vOkO3fufQF vir7jHUqNI7Ho2BX3WKX0QtekMJBpteZORxSedc0M1o/A8Lri2tyektMMAwRpbb4 uDmQT0fc8Ie1opuyv3DU6brjW3OZmVwXy4d+8NXvGHd7Ec10SAYFn3Pnrt1RT7we OjwJpQlzzgMw9fvDn2edrAJUfCiTYtp2ghi/nY06RTEyAwALLk2KXxp94IwUFDbX EuYND2aib/F0nAxHoyvELyine5Y8V9Tsmkksseq/PPPi0H4g7okrDDxhGyCbICos 2gMCBgfq9ESuTsvuZpQ1WqtpzB9+8sBZihVZoRTZiy1WtSWg4I9Qqqq/+pa8iQBc D74= =3jvP -----END PGP SIGNATURE----- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Mon Jan 10 03:57:53 2022 Received: (at 53154) by debbugs.gnu.org; 10 Jan 2022 08:57:53 +0000 Received: from localhost ([127.0.0.1]:51801 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n6qUy-0007kh-UX for submit@debbugs.gnu.org; Mon, 10 Jan 2022 03:57:53 -0500 Received: from mira.cbaines.net ([212.71.252.8]:41264) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n6qUu-0007kV-UF for 53154@debbugs.gnu.org; Mon, 10 Jan 2022 03:57:51 -0500 Received: from localhost (unknown [IPv6:2a02:8010:68c1:0:8ac0:b4c7:f5c8:7caa]) by mira.cbaines.net (Postfix) with ESMTPSA id A7D1827BBE9; Mon, 10 Jan 2022 08:57:47 +0000 (GMT) Received: from capella (localhost [127.0.0.1]) by localhost (OpenSMTPD) with ESMTP id 1a5b7ee0; Mon, 10 Jan 2022 08:57:47 +0000 (UTC) References: <20220110055812.19842-1-arunisaac@systemreboot.net> <87zgo486ze.fsf@systemreboot.net> User-agent: mu4e 1.6.10; emacs 27.2 From: Christopher Baines To: Arun Isaac Subject: Re: bug#53154: Acknowledgement ([PATCH] services: laminar: Set LAMINAR_BIND_RPC environment variable.) Date: Mon, 10 Jan 2022 08:57:25 +0000 In-reply-to: <87zgo486ze.fsf@systemreboot.net> Message-ID: <87y23o9ddj.fsf@cbaines.net> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 53154 Cc: 53154@debbugs.gnu.org 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 (-) --=-=-= Content-Type: text/plain Arun Isaac writes: > Hi Chris, > > I have CCed you on this issue, since you wrote the laminar service and > might be able to review this patch easily. > > Thank you! It looks like a good change to me, please push! Chris --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQKlBAEBCgCPFiEEPonu50WOcg2XVOCyXiijOwuE9XcFAmHb9QlfFIAAAAAALgAo aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldDNF ODlFRUU3NDU4RTcyMEQ5NzU0RTBCMjVFMjhBMzNCMEI4NEY1NzcRHG1haWxAY2Jh aW5lcy5uZXQACgkQXiijOwuE9Xf7Yg/8D34I2iC/CVrWMMCbmETv8e+SrUZjsFiR xCmlhmavy6YRsAxC+IHV/r6eWQcTFCAFbuPyqjGXkWmTip4aMGz0vaV7TQxVJWgG CHNPhTVJcWgHdf2dt2lJo1ynR0ZfY49tQ7/vByPu+7wsKRJWCxEOApjcVNZosUYC wFqoEjjAtHK6m9PK0GajBByjrlQZPfkHsUfwgvgKephx3zNVT1upU7gFWIWTbhBy vI1tuWORJgrtV0IYGWEQDUtoybEfl/PsmnWkM0xc77vcRUTaR4kbwX4iCdYPNqmy M6mWeND9mWevLoVMZhf56G2JANDZIkVlk/9OvgJNQHNFo3XF3nsEkcE2bnA6W03T JXp6mjrJTvb0mVaWV11E5kanTG1UIpjy27NZ2hxo2cQjFXp6oEV97E8qOWbT1yuc w7fszBBI+cIYwAOWh2HoFtTewHnIUmmwKHG8dVAexkU+P5avj2qhmfPGzi2xmEF1 RL6a08jFNVezoUC6AnSsT6TM97yFtEOax1+g6O1arHJc28Kv6VKij+OQi+sby3Rz ia/DtfZeK1O8T3J5zecGLcn6u2PdQJfJoqa8Aa2Iy+AUrW8hZR6I/q/0Gk8Fjbar CA2n1jQUgkNYw3BYbXpxXrf4nyzmmerY9hfLD03LeDJ3puTVWRSQb6i7A6Dw0Cg7 skKztEBYNDE= =Zg20 -----END PGP SIGNATURE----- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Tue Jan 11 01:56:45 2022 Received: (at 53154-done) by debbugs.gnu.org; 11 Jan 2022 06:56:45 +0000 Received: from localhost ([127.0.0.1]:54004 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n7B5J-0007XW-3c for submit@debbugs.gnu.org; Tue, 11 Jan 2022 01:56:45 -0500 Received: from mugam.systemreboot.net ([139.59.75.54]:50962) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n7B5F-0007XK-IS for 53154-done@debbugs.gnu.org; Tue, 11 Jan 2022 01:56:43 -0500 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: References: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:List-Id: List-Help:List-Unsubscribe:List-Subscribe:List-Post:List-Owner:List-Archive; bh=C49yas2DFh8Kh0lrgZkE+YyijJpdEL2hJEB7EA5hyJA=; b=nC4bYlPiuDZmVuQyHFBlNtGmnf lCPvS+Y2MeyxWvG0F0dOlvGlATVqng7KREGW+vTxeELWcaTvL7R2BltBuVYKEDY3nETXxI44jeNXr yRmIQBOZXuGnz/+B59JrM1iedhGC8UozOLm9MiU3jZL6dR231fuf96kS+dQXTPLeYSzpf/PWdHrd3 P3TcM4/MILfma5I/kApiipgYXYEufmwuRuWTC83lOYQaGw7cjwBjzDNZ/YFia8a6Xh6L/9qXCdJ3q HYFrWRKZp65KY6w8iIAEumnniw5jIMJFjBoTZQEI+tvUhpM2WVLNwVz69jvlYKEjs5Gkzzn2taVLq 28SflwGA==; Received: from [192.168.2.1] (port=18296 helo=steel) by systemreboot.net with esmtpsa (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.95) (envelope-from ) id 1n7B5C-0006AA-Rg; Tue, 11 Jan 2022 12:26:38 +0530 From: Arun Isaac To: Christopher Baines Subject: Re: bug#53154: Acknowledgement ([PATCH] services: laminar: Set LAMINAR_BIND_RPC environment variable.) In-Reply-To: <87y23o9ddj.fsf@cbaines.net> References: <20220110055812.19842-1-arunisaac@systemreboot.net> <87zgo486ze.fsf@systemreboot.net> <87y23o9ddj.fsf@cbaines.net> Date: Tue, 11 Jan 2022 12:26:34 +0530 Message-ID: <87ee5e92vx.fsf@systemreboot.net> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha256; protocol="application/pgp-signature" X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 53154-done Cc: 53154-done@debbugs.gnu.org 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 (-) --=-=-= Content-Type: text/plain Pushed, thanks! --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQFPBAEBCAA5FiEEf3MDQ/Lwnzx3v3nTLiXui2GAK7MFAmHdKiIbHGFydW5pc2Fh Y0BzeXN0ZW1yZWJvb3QubmV0AAoJEC4l7othgCuzIfgH/0ZrfSevT0SGUHLidEtZ 7B8NxAh3oLtGUIjDpyGB/As1NgcgXVqi/wHmkBwyVzYCTZ3fruZa5CqN5LgHtlSH dsHiF77TX30I1BaSeOu8Qxy1HmklxgE3VNwVcMmjtS2SIrCnpz2Y+kO1yvfViqI7 klXAWsib3zk16RIuOGhooyZQPaHAOQKJ2uVTC5rtw6wpa6tBxlZZM/FnU4vPfH5N Qkryx06WGgta2TkaaSlCr+0LnHKvytJG5+tW+Rlr0F4x2qJfZS5EMHSycPjX1lia 6pfTRVsMwqjTG/wAk4Lf08XrTvNIF7Xvxcw3tyLqB5GqQFg4h/LOPPN5//SuMEYS jZE= =QmBl -----END PGP SIGNATURE----- --=-=-=-- From unknown Mon Aug 18 15:39:47 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Tue, 08 Feb 2022 12:24:06 +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