[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
- branch master updated (f58b2f3 -> 86ce369), guix-commits, 2019/09/12
- 02/06: linux-container: Exclude more services when sharing networking with the host.,
guix-commits <=
- 03/06: services: Fix /usr/bin/env special file target., guix-commits, 2019/09/12
- 04/06: linux-container: "run-container" scripts shows the container's PID., guix-commits, 2019/09/12
- 01/06: file-systems: Add /var/run/nscd to '%network-file-mappings'., guix-commits, 2019/09/12
- 05/06: gnu: Add emacs-doom-themes., guix-commits, 2019/09/12
- 06/06: gnu: emacs-interactive-align: Update to 0.4.2., guix-commits, 2019/09/12