From unknown Tue Jun 17 22:30:02 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#59195] [PATCH] services: vpn: Add wireguard-tools to profile-service-type Resent-From: EuAndreh Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Fri, 11 Nov 2022 14:19:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 59195 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 59195@debbugs.gnu.org Cc: EuAndreh X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.1668176307384 (code B ref -1); Fri, 11 Nov 2022 14:19:01 +0000 Received: (at submit) by debbugs.gnu.org; 11 Nov 2022 14:18:27 +0000 Received: from localhost ([127.0.0.1]:45455 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1otUrS-000068-Ub for submit@debbugs.gnu.org; Fri, 11 Nov 2022 09:18:27 -0500 Received: from lists.gnu.org ([209.51.188.17]:56386) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1otUrQ-00005z-Nj for submit@debbugs.gnu.org; Fri, 11 Nov 2022 09:18:25 -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 1otUrQ-0002As-7k for guix-patches@gnu.org; Fri, 11 Nov 2022 09:18:24 -0500 Received: from box.euandre.org ([46.101.160.115]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1otUrO-0004nh-6e for guix-patches@gnu.org; Fri, 11 Nov 2022 09:18:23 -0500 Received: from authenticated-user (box.euandre.org [46.101.160.115]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (No client certificate requested) by box.euandre.org (Postfix) with ESMTPSA id 6F4A3FC406; Fri, 11 Nov 2022 11:17:42 -0300 (-03) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=euandre.org; s=mail; t=1668176263; bh=pB0KetSrnOltwmqPD7XTx+/uBXoo89mbRFbaJ7q1X2s=; h=From:To:Cc:Subject:Date:From; b=nPSMABR8wSmMpoOeJwLowQJ/dURNfZE5g2odxltXpYJ50FWYePb/sEBjnMG6MEW0K TjpgXLOtU4/bBlWM+Ok/pxnuC8sF9h16b98L7jyV2DDzUHj+XfOaBb0pyMXtoU48pV 9UFG1W611aPdKFA0+mTiHw3HvoDVEzPbk7LSf7xJoB+EDvBZjMoAthjRXy69YSY5L3 FWTNVQZibTa8qrOIO0ILGFLeUtcgIDY/IlBJNq4kfnceGsNhB317fwzcv9QG5f55nY s7KjcacA2KUXSIGIIZqPNtd/plo+fio7PghlCKOsEmk9jeyvdtCsTdEQL1r2S7i4S5 7tk0KIQ9pk83A== From: EuAndreh Date: Fri, 11 Nov 2022 11:17:28 -0300 Message-Id: <20221111141728.28295-1-eu@euandre.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=46.101.160.115; envelope-from=eu@euandre.org; helo=box.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-service-type): Include the "wireguard-tools" package as an extension to profile-service-type, so that users that enable the wireguarde service can interact with it via the command-line without having to manually install wireguard-tools. --- gnu/services/vpn.scm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gnu/services/vpn.scm b/gnu/services/vpn.scm index 6f2821eccf..5cdfa97add 100644 --- a/gnu/services/vpn.scm +++ b/gnu/services/vpn.scm @@ -875,6 +875,8 @@ (define wireguard-service-type (list (service-extension shepherd-root-service-type wireguard-shepherd-service) (service-extension activation-service-type - wireguard-activation))) + wireguard-activation) + (service-extension profile-service-type + (const wireguard-tools)))) (description "Set up Wireguard @acronym{VPN, Virtual Private Network} tunnels."))) -- 2.38.1 From unknown Tue Jun 17 22:30:02 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#59195: closed (Re: bug#59195: [PATCH] services: vpn: Add wireguard-tools to profile-service-type) Message-ID: References: <87wn80t6gb.fsf@gnu.org> <20221111141728.28295-1-eu@euandre.org> X-Gnu-PR-Message: they-closed 59195 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 59195@debbugs.gnu.org Date: Sat, 12 Nov 2022 17:43:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1668274982-8724-1" This is a multi-part message in MIME format... ------------=_1668274982-8724-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #59195: [PATCH] services: vpn: Add wireguard-tools to profile-service-type 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 59195@debbugs.gnu.org. --=20 59195: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D59195 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1668274982-8724-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 59195-done) by debbugs.gnu.org; 12 Nov 2022 17:42:56 +0000 Received: from localhost ([127.0.0.1]:48928 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1otuWu-0002GO-71 for submit@debbugs.gnu.org; Sat, 12 Nov 2022 12:42:56 -0500 Received: from eggs.gnu.org ([209.51.188.92]:48880) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1otuWs-0002GB-DN for 59195-done@debbugs.gnu.org; Sat, 12 Nov 2022 12:42:54 -0500 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1otuWm-0003XE-UI; Sat, 12 Nov 2022 12:42:48 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:In-Reply-To:Date:References:Subject:To: From; bh=Q23Y9sTz1VGwmneCM1l4Ifg0JSqktAtkNMFUdeFp8w8=; b=hq7C7WsJhwqr60r4t9Ia KzXpZhD5eBQArAYjCGcaFhYRB8rio3mi9LyV1C4wgcKDK/KC1G/brPZPlh47+SxBMaLEugCLgSta+ 88zZVg9qho09s5MRrqPa3sZ9KfC+9D6czwWv2RKQU714SwPvf+uLQzNdI9umPhXHSSoyALzmHSuJN JJT47S0HU6UQWQIqArSsnmSv5Zwz5+sUPT/8qNy+vQPS8tqMv1qZ2DXyRjKDFeBWkCPCpDtw55frL kE3d71ajGChYokeLPbGuzXTa4osUair2+G58By59MtOcinVl+nsV6DpKow6hTL0g4EDk2c7J2gPv7 estadTkratOaAQ==; Received: from 2a02-8429-81d2-3d01-94c9-8097-ea5c-2775.rev.sfr.net ([2a02:8429:81d2:3d01:94c9:8097:ea5c:2775] helo=meije) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1otuWm-0003E8-DL; Sat, 12 Nov 2022 12:42:48 -0500 From: Mathieu Othacehe To: EuAndreh Subject: Re: bug#59195: [PATCH] services: vpn: Add wireguard-tools to profile-service-type References: <20221111141728.28295-1-eu@euandre.org> Date: Sat, 12 Nov 2022 18:42:44 +0100 In-Reply-To: <20221111141728.28295-1-eu@euandre.org> (EuAndreh's message of "Fri, 11 Nov 2022 11:17:28 -0300") Message-ID: <87wn80t6gb.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 59195-done Cc: 59195-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: -3.3 (---) > * gnu/services/vpn.scm (wireguard-service-type): Include the > "wireguard-tools" package as an extension to profile-service-type, so > that users that enable the wireguarde service can interact with it via > the command-line without having to manually install wireguard-tools. Applied, thanks. Mathieu ------------=_1668274982-8724-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 11 Nov 2022 14:18:27 +0000 Received: from localhost ([127.0.0.1]:45455 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1otUrS-000068-Ub for submit@debbugs.gnu.org; Fri, 11 Nov 2022 09:18:27 -0500 Received: from lists.gnu.org ([209.51.188.17]:56386) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1otUrQ-00005z-Nj for submit@debbugs.gnu.org; Fri, 11 Nov 2022 09:18:25 -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 1otUrQ-0002As-7k for guix-patches@gnu.org; Fri, 11 Nov 2022 09:18:24 -0500 Received: from box.euandre.org ([46.101.160.115]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1otUrO-0004nh-6e for guix-patches@gnu.org; Fri, 11 Nov 2022 09:18:23 -0500 Received: from authenticated-user (box.euandre.org [46.101.160.115]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (No client certificate requested) by box.euandre.org (Postfix) with ESMTPSA id 6F4A3FC406; Fri, 11 Nov 2022 11:17:42 -0300 (-03) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=euandre.org; s=mail; t=1668176263; bh=pB0KetSrnOltwmqPD7XTx+/uBXoo89mbRFbaJ7q1X2s=; h=From:To:Cc:Subject:Date:From; b=nPSMABR8wSmMpoOeJwLowQJ/dURNfZE5g2odxltXpYJ50FWYePb/sEBjnMG6MEW0K TjpgXLOtU4/bBlWM+Ok/pxnuC8sF9h16b98L7jyV2DDzUHj+XfOaBb0pyMXtoU48pV 9UFG1W611aPdKFA0+mTiHw3HvoDVEzPbk7LSf7xJoB+EDvBZjMoAthjRXy69YSY5L3 FWTNVQZibTa8qrOIO0ILGFLeUtcgIDY/IlBJNq4kfnceGsNhB317fwzcv9QG5f55nY s7KjcacA2KUXSIGIIZqPNtd/plo+fio7PghlCKOsEmk9jeyvdtCsTdEQL1r2S7i4S5 7tk0KIQ9pk83A== From: EuAndreh To: guix-patches@gnu.org Subject: [PATCH] services: vpn: Add wireguard-tools to profile-service-type Date: Fri, 11 Nov 2022 11:17:28 -0300 Message-Id: <20221111141728.28295-1-eu@euandre.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=46.101.160.115; envelope-from=eu@euandre.org; helo=box.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-service-type): Include the "wireguard-tools" package as an extension to profile-service-type, so that users that enable the wireguarde service can interact with it via the command-line without having to manually install wireguard-tools. --- gnu/services/vpn.scm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gnu/services/vpn.scm b/gnu/services/vpn.scm index 6f2821eccf..5cdfa97add 100644 --- a/gnu/services/vpn.scm +++ b/gnu/services/vpn.scm @@ -875,6 +875,8 @@ (define wireguard-service-type (list (service-extension shepherd-root-service-type wireguard-shepherd-service) (service-extension activation-service-type - wireguard-activation))) + wireguard-activation) + (service-extension profile-service-type + (const wireguard-tools)))) (description "Set up Wireguard @acronym{VPN, Virtual Private Network} tunnels."))) -- 2.38.1 ------------=_1668274982-8724-1--