mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 05:48:07 -05:00
system: Export 'operating-system-default-essential-services'.
* gnu/system.scm (essential-services): Rename to... (operating-system-default-essential-services): ... this. (<operating-system>)[essential-services]: Adjust accordingly.
This commit is contained in:
parent
755a6027ce
commit
f8885ecab6
1 changed files with 4 additions and 2 deletions
|
@ -72,6 +72,7 @@ (define-module (gnu system)
|
|||
operating-system-bootloader
|
||||
operating-system-services
|
||||
operating-system-essential-services
|
||||
operating-system-default-essential-services
|
||||
operating-system-user-services
|
||||
operating-system-packages
|
||||
operating-system-host-name
|
||||
|
@ -213,7 +214,8 @@ (define-record-type* <operating-system> operating-system
|
|||
|
||||
(essential-services operating-system-essential-services ; list of services
|
||||
(thunked)
|
||||
(default (essential-services this-operating-system)))
|
||||
(default (operating-system-default-essential-services
|
||||
this-operating-system)))
|
||||
(services operating-system-user-services ; list of services
|
||||
(default %base-services))
|
||||
|
||||
|
@ -463,7 +465,7 @@ (define* (operating-system-directory-base-entries os)
|
|||
("initrd" ,initrd)
|
||||
("locale" ,locale)))))) ;used by libc
|
||||
|
||||
(define* (essential-services os)
|
||||
(define (operating-system-default-essential-services os)
|
||||
"Return the list of essential services for OS. These are special services
|
||||
that implement part of what's declared in OS are responsible for low-level
|
||||
bookkeeping."
|
||||
|
|
Loading…
Reference in a new issue