guix-commits
[Top][All Lists]
Advanced

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

05/08: linux-container: Compute essential services for THIS-OPERATING-SY


From: guix-commits
Subject: 05/08: linux-container: Compute essential services for THIS-OPERATING-SYSTEM.
Date: Wed, 15 May 2019 10:36:31 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit 3f9bed04f031a4d4f8d3b6dc0a4de42b0c628496
Author: Ludovic Courtès <address@hidden>
Date:   Fri May 10 22:07:55 2019 +0200

    linux-container: Compute essential services for THIS-OPERATING-SYSTEM.
    
    Previously, the 'essential-services' would correspond to the initial,
    non-containerized OS.  Thus, all the file systems removed in
    'container-essential-services' would actually still be there because the
    essential services would be computed on the non-containerized OS.
    
    This is a followup to 69cae3d3356a69b7fe69481338f760545995485e.
    
    * gnu/system/linux-container.scm (container-essential-services): Call
    'operating-system-default-essential-services' to get the baseline
    services.
    (containerized-operating-system): Pass THIS-OPERATING-SYSTEM, not OS, to
    'container-essential-services'.
    Add a dummy root file system to 'file-systems'.
    (container-script)[mountable-file-system?]: New procedure.
    Use it.
---
 gnu/system/linux-container.scm | 21 +++++++++++++++++----
 1 file changed, 17 insertions(+), 4 deletions(-)

diff --git a/gnu/system/linux-container.scm b/gnu/system/linux-container.scm
index 0cfd7ef..16eee7a 100644
--- a/gnu/system/linux-container.scm
+++ b/gnu/system/linux-container.scm
@@ -46,7 +46,7 @@ from OS that are needed on the bare metal and not in a 
container."
                     (list (service-kind %linux-bare-metal-service)
                           firmware-service-type
                           system-service-type)))
-            (operating-system-essential-services os)))
+            (operating-system-default-essential-services os)))
 
   (cons (service system-service-type
                  (let ((locale (operating-system-locale-directory os)))
@@ -103,14 +103,22 @@ containerized OS.  EXTRA-FILE-SYSTEMS is a list of file 
systems to add to OS."
     (inherit os)
     (swap-devices '()) ; disable swap
     (essential-services (container-essential-services
-                         os #:shared-network? shared-network?))
+                         this-operating-system
+                         #:shared-network? shared-network?))
     (services (remove (lambda (service)
                         (memq (service-kind service)
                               useless-services))
                       (operating-system-user-services os)))
     (file-systems (append (map mapping->fs mappings)
                           extra-file-systems
-                          user-file-systems))))
+                          user-file-systems
+
+                          ;; Provide a dummy root file system so we can create
+                          ;; a 'boot-parameters' file.
+                          (list (file-system
+                                  (mount-point "/")
+                                  (device "nothing")
+                                  (type "dummy")))))))
 
 (define* (container-script os #:key (mappings '()) shared-network?)
   "Return a derivation of a script that runs OS as a Linux container.
@@ -126,6 +134,11 @@ that will be shared with the host system."
                          (target nscd-run-directory)))
                   '()))))
 
+  (define (mountable-file-system? file-system)
+    ;; Return #t if FILE-SYSTEM should be mounted in the container.
+    (and (not (string=? "/" (file-system-mount-point file-system)))
+         (file-system-needed-for-boot? file-system)))
+
   (let* ((os           (containerized-operating-system
                         os
                         (cons %store-mapping
@@ -134,7 +147,7 @@ that will be shared with the host system."
                                   mappings))
                         #:shared-network? shared-network?
                         #:extra-file-systems %container-file-systems))
-         (file-systems (filter file-system-needed-for-boot?
+         (file-systems (filter mountable-file-system?
                                (operating-system-file-systems os)))
          (specs        (map file-system->spec file-systems)))
 



reply via email to

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