unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#64850] [PATCH 0/1] Provide a way to use multiple dhcp clients with static-networking
@ 2023-07-25 10:57 Alexey Abramov via Guix-patches via
  2023-07-25 10:59 ` [bug#64850] [PATCH 1/1] services: dhcp-client-configuration: Allow provision override Alexey Abramov via Guix-patches via
  0 siblings, 1 reply; 3+ messages in thread
From: Alexey Abramov via Guix-patches via @ 2023-07-25 10:57 UTC (permalink / raw)
  To: 64850

In a case you need to configure existing interfaces, rename them or for
example construct a bond first and attach dhcp client to it, we need to run
static-networking AND dhcp-client at the same time.  At this moment both
services provision 'networking by default.

Even though we can override provision for static-networking, it is still not
enough in case we need to run multiple dhcp-clients on different interfaces.

This patch will allow provision override for dhcp-client. This is an addition to bug#64616.

Alexey Abramov (1):
  services: dhcp-client-configuration: Allow provision override

 gnu/services/networking.scm | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

-- 
2.40.1





^ permalink raw reply	[flat|nested] 3+ messages in thread

* [bug#64850] [PATCH 1/1] services: dhcp-client-configuration: Allow provision override
  2023-07-25 10:57 [bug#64850] [PATCH 0/1] Provide a way to use multiple dhcp clients with static-networking Alexey Abramov via Guix-patches via
@ 2023-07-25 10:59 ` Alexey Abramov via Guix-patches via
  2023-09-17 13:06   ` bug#64850: [PATCH 0/1] Provide a way to use multiple dhcp clients with static-networking Ludovic Courtès
  0 siblings, 1 reply; 3+ messages in thread
From: Alexey Abramov via Guix-patches via @ 2023-07-25 10:59 UTC (permalink / raw)
  To: 64850

* gnu/services/networking.scm: Allow setting up provision to allow running
DHCP client and static network configuration simultaneously.
---
 gnu/services/networking.scm | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/gnu/services/networking.scm b/gnu/services/networking.scm
index 5657b141d9..dc75c2f59d 100644
--- a/gnu/services/networking.scm
+++ b/gnu/services/networking.scm
@@ -88,6 +88,7 @@ (define-module (gnu services networking)
             dhcp-client-configuration
             dhcp-client-configuration?
             dhcp-client-configuration-package
+            dhcp-client-configuration-provision
             dhcp-client-configuration-interfaces
             dhcp-client-configuration-shepherd-requirement
 
@@ -303,6 +304,8 @@ (define-record-type* <dhcp-client-configuration>
                 (default isc-dhcp))
   (shepherd-requirement dhcp-client-configuration-shepherd-requirement
                         (default '()))
+  (provision    dhcp-client-configuration-provision
+                (default '(networking)))
   (interfaces   dhcp-client-configuration-interfaces
                 (default 'all)))                  ;'all | list of strings
 
@@ -312,6 +315,7 @@ (define dhcp-client-shepherd-service
      (let ((package (dhcp-client-configuration-package config))
            (shepherd-requirement (dhcp-client-configuration-shepherd-requirement config))
            (interfaces (dhcp-client-configuration-interfaces config))
+           (provision (dhcp-client-configuration-provision config))
            (pid-file "/var/run/dhclient.pid"))
        (list (shepherd-service
               (documentation "Set up networking via DHCP.")
@@ -321,7 +325,7 @@ (define dhcp-client-shepherd-service
               ;; networking is unavailable, but also means that the interface is not up
               ;; yet when 'start' completes.  To wait for the interface to be ready, one
               ;; should instead monitor udev events.
-              (provision '(networking))
+              (provision provision)
 
               (start #~(lambda _
                          (define dhclient
-- 
2.40.1





^ permalink raw reply related	[flat|nested] 3+ messages in thread

* bug#64850: [PATCH 0/1] Provide a way to use multiple dhcp clients with static-networking
  2023-07-25 10:59 ` [bug#64850] [PATCH 1/1] services: dhcp-client-configuration: Allow provision override Alexey Abramov via Guix-patches via
@ 2023-09-17 13:06   ` Ludovic Courtès
  0 siblings, 0 replies; 3+ messages in thread
From: Ludovic Courtès @ 2023-09-17 13:06 UTC (permalink / raw)
  To: Alexey Abramov; +Cc: 64850-done

Hi,

Alexey Abramov <levenson@mmer.org> skribis:

> * gnu/services/networking.scm: Allow setting up provision to allow running
> DHCP client and static network configuration simultaneously.
> ---
>  gnu/services/networking.scm | 6 +++++-
>  1 file changed, 5 insertions(+), 1 deletion(-)
>
> diff --git a/gnu/services/networking.scm b/gnu/services/networking.scm
> index 5657b141d9..dc75c2f59d 100644
> --- a/gnu/services/networking.scm
> +++ b/gnu/services/networking.scm
> @@ -88,6 +88,7 @@ (define-module (gnu services networking)
>              dhcp-client-configuration
>              dhcp-client-configuration?
>              dhcp-client-configuration-package
> +            dhcp-client-configuration-provision
>              dhcp-client-configuration-interfaces
>              dhcp-client-configuration-shepherd-requirement
>  
> @@ -303,6 +304,8 @@ (define-record-type* <dhcp-client-configuration>
>                  (default isc-dhcp))
>    (shepherd-requirement dhcp-client-configuration-shepherd-requirement
>                          (default '()))
> +  (provision    dhcp-client-configuration-provision
> +                (default '(networking)))

I changed the field name to ‘shepherd-provision’ for consistency and
documented it in ‘doc/guix.texi’.  Committed!

Thanks,
Ludo’.




^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2023-09-17 13:07 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-07-25 10:57 [bug#64850] [PATCH 0/1] Provide a way to use multiple dhcp clients with static-networking Alexey Abramov via Guix-patches via
2023-07-25 10:59 ` [bug#64850] [PATCH 1/1] services: dhcp-client-configuration: Allow provision override Alexey Abramov via Guix-patches via
2023-09-17 13:06   ` bug#64850: [PATCH 0/1] Provide a way to use multiple dhcp clients with static-networking Ludovic Courtès

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).