mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-23 21:17:11 -05:00
services: system: Initial entries are non-monadic.
* gnu/system.scm (operating-system-directory-base-entries): Return a regular, non-monadic value. * gnu/services.scm (system-derivation): Adjust accordingly. * gnu/system/linux-container.scm (container-essential-services): Likewise.
This commit is contained in:
parent
45c84c8f6f
commit
0e5c2d5e14
3 changed files with 8 additions and 12 deletions
|
@ -318,11 +318,10 @@ (define-syntax modify-services
|
|||
;;; Core services.
|
||||
;;;
|
||||
|
||||
(define (system-derivation mentries mextensions)
|
||||
(define (system-derivation entries mextensions)
|
||||
"Return as a monadic value the derivation of the 'system' directory
|
||||
containing the given entries."
|
||||
(mlet %store-monad ((entries mentries)
|
||||
(extensions (mapm/accumulate-builds identity
|
||||
(mlet %store-monad ((extensions (mapm/accumulate-builds identity
|
||||
mextensions)))
|
||||
(lower-object
|
||||
(file-union "system"
|
||||
|
|
|
@ -506,11 +506,10 @@ (define* (operating-system-directory-base-entries os)
|
|||
(hooks (list linux-module-database))))
|
||||
(initrd (operating-system-initrd-file os))
|
||||
(params (operating-system-boot-parameters-file os)))
|
||||
(with-monad %store-monad
|
||||
(return `(("kernel" ,kernel)
|
||||
("parameters" ,params)
|
||||
("initrd" ,initrd)
|
||||
("locale" ,locale)))))) ;used by libc
|
||||
`(("kernel" ,kernel)
|
||||
("parameters" ,params)
|
||||
("initrd" ,initrd)
|
||||
("locale" ,locale)))) ;used by libc
|
||||
|
||||
(define (operating-system-default-essential-services os)
|
||||
"Return the list of essential services for OS. These are special services
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
;;; GNU Guix --- Functional package management for GNU
|
||||
;;; Copyright © 2015 David Thompson <davet@gnu.org>
|
||||
;;; Copyright © 2016, 2017, 2019 Ludovic Courtès <ludo@gnu.org>
|
||||
;;; Copyright © 2016, 2017, 2019, 2020 Ludovic Courtès <ludo@gnu.org>
|
||||
;;; Copyright © 2019 Arun Isaac <arunisaac@systemreboot.net>
|
||||
;;; Copyright © 2020 Efraim Flashner <efraim@flashner.co.il>
|
||||
;;;
|
||||
|
@ -53,9 +53,7 @@ (define base
|
|||
(operating-system-default-essential-services os)))
|
||||
|
||||
(cons (service system-service-type
|
||||
(let ((locale (operating-system-locale-directory os)))
|
||||
(with-monad %store-monad
|
||||
(return `(("locale" ,locale))))))
|
||||
`(("locale" ,(operating-system-locale-directory os))))
|
||||
;; If network is to be shared with the host, remove network
|
||||
;; configuration files from etc-service.
|
||||
(if shared-network?
|
||||
|
|
Loading…
Reference in a new issue