GNU bug report logs -
#77045
[PATCH] services: wireguard: Add the shepherd-requirement field.
Previous Next
To reply to this bug, email your comments to 77045 AT debbugs.gnu.org.
There is no need to reopen the bug first.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
ludo <at> gnu.org, maxim.cournoyer <at> gmail.com, guix-patches <at> gnu.org
:
bug#77045
; Package
guix-patches
.
(Sun, 16 Mar 2025 07:57:03 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Sergey Trofimov <sarg <at> sarg.org.ru>
:
New bug report received and forwarded. Copy sent to
ludo <at> gnu.org, maxim.cournoyer <at> gmail.com, guix-patches <at> gnu.org
.
(Sun, 16 Mar 2025 07:57:03 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
* gnu/services/vpn.scm
(<wireguard-configuration>): Add shepherd-requirement.
(wireguard-shepherd-service): Pass shepherd-requirement.
* doc/guix.texi (VPN Services):[wireguard]: Document it.
---
doc/guix.texi | 4 ++++
gnu/services/vpn.scm | 7 +++++--
2 files changed, 9 insertions(+), 2 deletions(-)
diff --git a/doc/guix.texi b/doc/guix.texi
index 883cdc2803..681200e5f9 100644
--- a/doc/guix.texi
+++ b/doc/guix.texi
@@ -35711,6 +35711,10 @@ VPN Services
List of strings or G-expressions. These are script snippets which will
be executed after tearing down the interface.
+@item @code{shepherd-requirement} (default: @code{'()}) (type: list-of-symbols)
+A list of symbols naming Shepherd services that this service
+will depend on.
+
@item @code{table} (default: @code{"auto"})
The routing table to which routes are added, as a string. There are two
special values: @code{"off"} that disables the creation of routes
diff --git a/gnu/services/vpn.scm b/gnu/services/vpn.scm
index 478a0d543e..2b5886c9fa 100644
--- a/gnu/services/vpn.scm
+++ b/gnu/services/vpn.scm
@@ -88,6 +88,7 @@ (define-module (gnu services vpn)
wireguard-configuration-post-up
wireguard-configuration-pre-down
wireguard-configuration-post-down
+ wireguard-configuration-shepherd-requirement
wireguard-configuration-table
wireguard-configuration-auto-start?
@@ -765,6 +766,8 @@ (define-record-type* <wireguard-configuration>
(default '()))
(post-down wireguard-configuration-post-down ;list of strings
(default '()))
+ (shepherd-requirement wireguard-configuration-shepherd-requirement ; list of symbols
+ (default '()))
(table wireguard-configuration-table ;string
(default "auto"))
(auto-start? wireguard-configuration-auto-start? ;boolean
@@ -918,12 +921,12 @@ (define (endpoint-host-names peers)
(define (wireguard-shepherd-service config)
(match-record config <wireguard-configuration>
- (wireguard interface)
+ (wireguard interface shepherd-requirement)
(let ((wg-quick (file-append wireguard "/bin/wg-quick"))
(auto-start? (wireguard-configuration-auto-start? config))
(config (wireguard-configuration-file config)))
(list (shepherd-service
- (requirement '(networking))
+ (requirement `(networking ,@shepherd-requirement))
(provision (list (wireguard-service-name interface)))
(start #~(lambda _
(invoke #$wg-quick "up" #$config)))
base-commit: b8024fa1ade69a4f97990f0e3379eef01dfd40c2
prerequisite-patch-id: f9cc903b8048c8c6fde576fbf38ab110263020e3
prerequisite-patch-id: 54f1264dad23a74efa9aa3823350b2ee055bda97
prerequisite-patch-id: 220ddf11addf3a6c7ab3b349077bca6849241556
prerequisite-patch-id: 18f3d7d0a9ed1f267adeb3630b3801a0c179d9ea
--
2.48.1
Information forwarded
to
guix-patches <at> gnu.org
:
bug#77045
; Package
guix-patches
.
(Tue, 18 Mar 2025 10:52:02 GMT)
Full text and
rfc822 format available.
Message #8 received at 77045 <at> debbugs.gnu.org (full text, mbox):
Sergey Trofimov <sarg <at> sarg.org.ru> skribis:
> * gnu/services/vpn.scm
> (<wireguard-configuration>): Add shepherd-requirement.
> (wireguard-shepherd-service): Pass shepherd-requirement.
> * doc/guix.texi (VPN Services):[wireguard]: Document it.
[...]
> @@ -765,6 +766,8 @@ (define-record-type* <wireguard-configuration>
> (default '()))
> (post-down wireguard-configuration-post-down ;list of strings
> (default '()))
> + (shepherd-requirement wireguard-configuration-shepherd-requirement ; list of symbols
> + (default '()))
It should default to '(user-processes).
This is a bug that was already present; see
<https://issues.guix.gnu.org/76368> for background.
Ludo’.
Information forwarded
to
sarg <at> sarg.org.ru, ludo <at> gnu.org, maxim.cournoyer <at> gmail.com, guix-patches <at> gnu.org
:
bug#77045
; Package
guix-patches
.
(Tue, 18 Mar 2025 21:01:02 GMT)
Full text and
rfc822 format available.
Message #11 received at 77045 <at> debbugs.gnu.org (full text, mbox):
* gnu/services/vpn.scm (<wireguard-configuration>): Add
shepherd-requirement.
(wireguard-shepherd-service): Pass shepherd-requirement. Add
user-processes to requirements.
* doc/guix.texi (VPN Services):[wireguard]: Document it.
Change-Id: Ia85add5067f6f9e023b8d65d6ce067b98eeb111e
---
doc/guix.texi | 4 ++++
gnu/services/vpn.scm | 7 +++++--
2 files changed, 9 insertions(+), 2 deletions(-)
diff --git a/doc/guix.texi b/doc/guix.texi
index 794afcd8c4..9352c56563 100644
--- a/doc/guix.texi
+++ b/doc/guix.texi
@@ -35739,6 +35739,10 @@ VPN Services
List of strings or G-expressions. These are script snippets which will
be executed after tearing down the interface.
+@item @code{shepherd-requirement} (default: @code{'()}) (type: list-of-symbols)
+A list of symbols naming Shepherd services that this service
+will depend on.
+
@item @code{table} (default: @code{"auto"})
The routing table to which routes are added, as a string. There are two
special values: @code{"off"} that disables the creation of routes
diff --git a/gnu/services/vpn.scm b/gnu/services/vpn.scm
index 478a0d543e..3f1f8661d8 100644
--- a/gnu/services/vpn.scm
+++ b/gnu/services/vpn.scm
@@ -88,6 +88,7 @@ (define-module (gnu services vpn)
wireguard-configuration-post-up
wireguard-configuration-pre-down
wireguard-configuration-post-down
+ wireguard-configuration-shepherd-requirement
wireguard-configuration-table
wireguard-configuration-auto-start?
@@ -765,6 +766,8 @@ (define-record-type* <wireguard-configuration>
(default '()))
(post-down wireguard-configuration-post-down ;list of strings
(default '()))
+ (shepherd-requirement wireguard-configuration-shepherd-requirement ; list of symbols
+ (default '()))
(table wireguard-configuration-table ;string
(default "auto"))
(auto-start? wireguard-configuration-auto-start? ;boolean
@@ -918,12 +921,12 @@ (define (endpoint-host-names peers)
(define (wireguard-shepherd-service config)
(match-record config <wireguard-configuration>
- (wireguard interface)
+ (wireguard interface shepherd-requirement)
(let ((wg-quick (file-append wireguard "/bin/wg-quick"))
(auto-start? (wireguard-configuration-auto-start? config))
(config (wireguard-configuration-file config)))
(list (shepherd-service
- (requirement '(networking))
+ (requirement `(networking user-processes ,@shepherd-requirement))
(provision (list (wireguard-service-name interface)))
(start #~(lambda _
(invoke #$wg-quick "up" #$config)))
base-commit: df799a61ef73451e587cb81942c7bfcbbade9e7e
prerequisite-patch-id: f9cc903b8048c8c6fde576fbf38ab110263020e3
prerequisite-patch-id: 220ddf11addf3a6c7ab3b349077bca6849241556
prerequisite-patch-id: fc7d254c8dc198bc2f083e1c8aea18960c73b165
--
2.48.1
Reply sent
to
Ludovic Courtès <ludo <at> gnu.org>
:
You have taken responsibility.
(Wed, 19 Mar 2025 10:27:03 GMT)
Full text and
rfc822 format available.
Notification sent
to
Sergey Trofimov <sarg <at> sarg.org.ru>
:
bug acknowledged by developer.
(Wed, 19 Mar 2025 10:27:04 GMT)
Full text and
rfc822 format available.
Message #16 received at 77045-done <at> debbugs.gnu.org (full text, mbox):
Sergey Trofimov <sarg <at> sarg.org.ru> skribis:
> * gnu/services/vpn.scm (<wireguard-configuration>): Add
> shepherd-requirement.
> (wireguard-shepherd-service): Pass shepherd-requirement. Add
> user-processes to requirements.
> * doc/guix.texi (VPN Services):[wireguard]: Document it.
>
> Change-Id: Ia85add5067f6f9e023b8d65d6ce067b98eeb111e
Applied, thanks!
This bug report was last modified 16 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.