From unknown Fri Aug 15 20:53:33 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#59704] [PATCH 1/1] services: wireguard: Use the parameterized wireguard package. Resent-From: EuAndreh Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Tue, 29 Nov 2022 23:41:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 59704 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 59704@debbugs.gnu.org Cc: EuAndreh X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.166976521318010 (code B ref -1); Tue, 29 Nov 2022 23:41:02 +0000 Received: (at submit) by debbugs.gnu.org; 29 Nov 2022 23:40:13 +0000 Received: from localhost ([127.0.0.1]:57188 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1p0ACz-0004gQ-EG for submit@debbugs.gnu.org; Tue, 29 Nov 2022 18:40:13 -0500 Received: from lists.gnu.org ([209.51.188.17]:39874) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1p0ACv-0004gI-Je for submit@debbugs.gnu.org; Tue, 29 Nov 2022 18:40:12 -0500 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 1p0ACv-0002Gw-76 for guix-patches@gnu.org; Tue, 29 Nov 2022 18:40:09 -0500 Received: from euandre.org ([2001:19f0:b400:1f0c:5400:4ff:fe35:8c89]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1p0ACY-0000oI-C4 for guix-patches@gnu.org; Tue, 29 Nov 2022 18:40:05 -0500 Received: from euandre.org (localhost [127.0.0.1]) by euandre.org (Postfix) with ESMTP id AF9E93794BD; Tue, 29 Nov 2022 20:39:34 -0300 (-03) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=euandre.org; h= from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; s=dkimproxy; bh=b5gTHooN63L7hVA01IOD 0rVQX1o=; b=NyTHecVsqn19/CVEU5lVRiFrr+eKMJBluorRjU43bsMAKppfRbSh IteF+k/nJCPunTktAbmXuNWNsl2Gs2rjI8GyzxLzJkOrV9cm/qQzWj09tyUzTsgi dC2kVy1mZczVUJGzGbz4XSpCiWGmlUS+e9OwXrLvWzzjtlwE+COyzkz4I6+dWpp0 cYcRaR4QJBREWXmVdE4rofmlBOw+v5K21Rd4+mlcXPP2tmIr8iXO4MERNyFj0I4g tBTPuRfG/NIMcrnIV7IA3c5qsbqvF5Nn57hspQU4zeaO43k7vSYhZcSBvPlZy4/S jFBI+a6aqYWz5ASE+suRF59qH3yDqwme/Q== From: EuAndreh Date: Tue, 29 Nov 2022 20:39:29 -0300 Message-Id: <20221129233929.28696-1-eu@euandre.org> X-Mailer: git-send-email 2.38.1 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Received-SPF: pass client-ip=2001:19f0:b400:1f0c:5400:4ff:fe35:8c89; envelope-from=eu@euandre.org; helo=euandre.org 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_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) 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 (--) * gnu/services/vpn.scm (wireguard-activation): Use the "wg" binary from the package given to . --- Notes: As of now, there is no other reference to the global "wireguard-tools= " package in the gnu/services/vpn.scm file. gnu/services/vpn.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/services/vpn.scm b/gnu/services/vpn.scm index def381987b..7b3bb8903c 100644 --- a/gnu/services/vpn.scm +++ b/gnu/services/vpn.scm @@ -833,7 +833,7 @@ (define (peer->config peer) =20 (define (wireguard-activation config) (match-record config - (private-key) + (private-key wireguard) #~(begin (use-modules (guix build utils) (ice-9 popen) @@ -842,7 +842,7 @@ (define (wireguard-activation config) (unless (file-exists? #$private-key) (let* ((pipe (open-input-pipe (string-append - #$(file-append wireguard-tools "/bin= /wg") + #$(file-append wireguard "/bin/wg") " genkey"))) (key (read-line pipe))) (call-with-output-file #$private-key --=20 2.38.1 From unknown Fri Aug 15 20:53:33 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: EuAndreh Subject: bug#59704: closed (Re: bug#59704: [PATCH 1/1] services: wireguard: Use the parameterized wireguard package.) Message-ID: References: <87r0x9i8w9.fsf@envs.net> <20221129233929.28696-1-eu@euandre.org> X-Gnu-PR-Message: they-closed 59704 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 59704@debbugs.gnu.org Date: Fri, 09 Dec 2022 02:55:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1670554502-2821-1" This is a multi-part message in MIME format... ------------=_1670554502-2821-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #59704: [PATCH 1/1] services: wireguard: Use the parameterized wireguard pa= ckage. which was filed against the guix-patches package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 59704@debbugs.gnu.org. --=20 59704: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D59704 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1670554502-2821-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 59704-done) by debbugs.gnu.org; 9 Dec 2022 02:54:21 +0000 Received: from localhost ([127.0.0.1]:60674 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1p3TWm-0000jE-T5 for submit@debbugs.gnu.org; Thu, 08 Dec 2022 21:54:21 -0500 Received: from mail.envs.net ([5.199.136.28]:50618) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1p3TWk-0000j8-TR for 59704-done@debbugs.gnu.org; Thu, 08 Dec 2022 21:54:19 -0500 Received: from localhost (mail.envs.net [127.0.0.1]) by mail.envs.net (Postfix) with ESMTP id A744938A233B; Fri, 9 Dec 2022 02:54:16 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=envs.net; s=modoboa; t=1670554456; bh=0ecrf7XOkUO2SKtTg6L0v5+Lzn4/sQ+5a8+CaKjJj7E=; h=From:To:Cc:Subject:References:Date:In-Reply-To:From; b=DwFA3MvvJMeyhDiA/eur3nMdj3U3244Yl9+04nA3dib2Ft7/89DhI/pF+31gAHpWR eSlLa0nHZC2ZMR8WaSjnMApDg+7n0QXfAx4d1nDG3+Mrbc2Ut8BnzbbrumiQS4ET7P 5Ttdl+Heh+ypkoeSGHILxVCH6cXjlgiOaOn7xeN4h0wYjTl4ShAee/FpdfebA4UuXD O7JLbPqtC0kuLyWikRhPOx/Kc56c6zm43S++Fp9O8zObepXsuZ5GS9Gyh0/YcMC0bV Qy9R7UWhCYHFBcxC4+yOnpepnbdwRvopJoO4fqfLmX6xQoT9ieVl2rO8Hs78wxrGB2 nxnaABsU17G0RAqsn7Rtbb90w3xDkYmFtsA/bq4nAHmTV+6syrqoVRRWua0daytntZ MXAcPRfI2UBK1JMokfx823UdP0mDeF4zj45kXQqEw5Dxkzpq6e23mTRuAiTkMePGtH D2BaRRPfi1TcMjZlc0MyLC3P31Q+ZxbEMtYWZozAb0c3vmg8ZBh1nni8BJA7KkQ7OZ KvbGZT0oVtxqRDVlKIpQshFnKnMe4+1+zUV86pNQfsxZAj9nuqWT5ZBM6m2h8btMny lD2RsZM11yqDpefPArfgccs8aUyRGcXz8IeT2t/Ws4lBuCIy7iWuQC2y08OdTnixOm GtdpSeu2ZoYDZnxaUVXsniEw= X-Virus-Scanned: Debian amavisd-new at mail.envs.net Received: from mail.envs.net ([127.0.0.1]) by localhost (mail.envs.net [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id nBH-lmq6ilAb; Fri, 9 Dec 2022 02:54:13 +0000 (UTC) Received: from localhost (unknown [182.150.116.135]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mail.envs.net (Postfix) with ESMTPSA; Fri, 9 Dec 2022 02:54:13 +0000 (UTC) Received: from localhost (localhost [local]) by localhost (OpenSMTPD) with ESMTPA id 4feb459d; Fri, 9 Dec 2022 02:54:46 +0000 (UTC) From: =?utf-8?B?5a6L5paH5q2m?= To: EuAndreh Subject: Re: bug#59704: [PATCH 1/1] services: wireguard: Use the parameterized wireguard package. References: <20221129233929.28696-1-eu@euandre.org> Date: Fri, 09 Dec 2022 10:54:46 +0800 In-Reply-To: <20221129233929.28696-1-eu@euandre.org> (EuAndreh's message of "Tue, 29 Nov 2022 20:39:29 -0300") Message-ID: <87r0x9i8w9.fsf@envs.net> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 59704-done Cc: 59704-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 (-) EuAndreh writes: > * gnu/services/vpn.scm (wireguard-activation): Use the "wg" binary from > the package given to . > --- > > Notes: > As of now, there is no other reference to the global "wireguard-tools" > package in the gnu/services/vpn.scm file. Pushed, thank you! ------------=_1670554502-2821-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 29 Nov 2022 23:40:13 +0000 Received: from localhost ([127.0.0.1]:57188 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1p0ACz-0004gQ-EG for submit@debbugs.gnu.org; Tue, 29 Nov 2022 18:40:13 -0500 Received: from lists.gnu.org ([209.51.188.17]:39874) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1p0ACv-0004gI-Je for submit@debbugs.gnu.org; Tue, 29 Nov 2022 18:40:12 -0500 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 1p0ACv-0002Gw-76 for guix-patches@gnu.org; Tue, 29 Nov 2022 18:40:09 -0500 Received: from euandre.org ([2001:19f0:b400:1f0c:5400:4ff:fe35:8c89]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1p0ACY-0000oI-C4 for guix-patches@gnu.org; Tue, 29 Nov 2022 18:40:05 -0500 Received: from euandre.org (localhost [127.0.0.1]) by euandre.org (Postfix) with ESMTP id AF9E93794BD; Tue, 29 Nov 2022 20:39:34 -0300 (-03) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=euandre.org; h= from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; s=dkimproxy; bh=b5gTHooN63L7hVA01IOD 0rVQX1o=; b=NyTHecVsqn19/CVEU5lVRiFrr+eKMJBluorRjU43bsMAKppfRbSh IteF+k/nJCPunTktAbmXuNWNsl2Gs2rjI8GyzxLzJkOrV9cm/qQzWj09tyUzTsgi dC2kVy1mZczVUJGzGbz4XSpCiWGmlUS+e9OwXrLvWzzjtlwE+COyzkz4I6+dWpp0 cYcRaR4QJBREWXmVdE4rofmlBOw+v5K21Rd4+mlcXPP2tmIr8iXO4MERNyFj0I4g tBTPuRfG/NIMcrnIV7IA3c5qsbqvF5Nn57hspQU4zeaO43k7vSYhZcSBvPlZy4/S jFBI+a6aqYWz5ASE+suRF59qH3yDqwme/Q== From: EuAndreh To: guix-patches@gnu.org Subject: [PATCH 1/1] services: wireguard: Use the parameterized wireguard package. Date: Tue, 29 Nov 2022 20:39:29 -0300 Message-Id: <20221129233929.28696-1-eu@euandre.org> X-Mailer: git-send-email 2.38.1 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Received-SPF: pass client-ip=2001:19f0:b400:1f0c:5400:4ff:fe35:8c89; envelope-from=eu@euandre.org; helo=euandre.org 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_PASS=-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: EuAndreh 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 (--) * gnu/services/vpn.scm (wireguard-activation): Use the "wg" binary from the package given to . --- Notes: As of now, there is no other reference to the global "wireguard-tools= " package in the gnu/services/vpn.scm file. gnu/services/vpn.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/services/vpn.scm b/gnu/services/vpn.scm index def381987b..7b3bb8903c 100644 --- a/gnu/services/vpn.scm +++ b/gnu/services/vpn.scm @@ -833,7 +833,7 @@ (define (peer->config peer) =20 (define (wireguard-activation config) (match-record config - (private-key) + (private-key wireguard) #~(begin (use-modules (guix build utils) (ice-9 popen) @@ -842,7 +842,7 @@ (define (wireguard-activation config) (unless (file-exists? #$private-key) (let* ((pipe (open-input-pipe (string-append - #$(file-append wireguard-tools "/bin= /wg") + #$(file-append wireguard "/bin/wg") " genkey"))) (key (read-line pipe))) (call-with-output-file #$private-key --=20 2.38.1 ------------=_1670554502-2821-1--