guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/06: linux-container: Exclude more services when sharing networking wi


From: guix-commits
Subject: 02/06: linux-container: Exclude more services when sharing networking with the host.
Date: Thu, 12 Sep 2019 17:25:50 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit da966a7a3d8a5c3fbc2f4105b95c4af17b2bbfdc
Author: Ludovic Courtès <address@hidden>
Date:   Thu Sep 12 22:23:35 2019 +0200

    linux-container: Exclude more services when sharing networking with the 
host.
    
    * gnu/system/linux-container.scm 
(containerized-operating-system)[useless-services]:
    Add more services to the list when SHARED-NETWORK? is true.
---
 gnu/system/linux-container.scm | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/gnu/system/linux-container.scm b/gnu/system/linux-container.scm
index 451a727..cca626b 100644
--- a/gnu/system/linux-container.scm
+++ b/gnu/system/linux-container.scm
@@ -30,6 +30,7 @@
   #:use-module (gnu build linux-container)
   #:use-module (gnu services)
   #:use-module (gnu services base)
+  #:use-module (gnu services networking)
   #:use-module (gnu services shepherd)
   #:use-module (gnu system)
   #:use-module (gnu system file-systems)
@@ -109,7 +110,11 @@ containerized OS.  EXTRA-FILE-SYSTEMS is a list of file 
systems to add to OS."
             ;; Remove nscd service if network is shared with the host.
             (if shared-network?
                 (list nscd-service-type
-                      static-networking-service-type)
+                      static-networking-service-type
+                      dhcp-client-service-type
+                      network-manager-service-type
+                      connman-service-type
+                      wicd-service-type)
                 (list))))
 
   (operating-system



reply via email to

[Prev in Thread] Current Thread [Next in Thread]