diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-05-09 22:58:46 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-05-09 22:59:18 +0200 |
commit | 217a5b852e02775123a30131f63684c09bd6ac77 (patch) | |
tree | 89563dcc30851ee21da7f07ce04fc22b069dbea9 /gnu/services | |
parent | e5c66f8c7bfb1f8c4162d19b3d01526164cfe2a4 (diff) | |
download | patches-217a5b852e02775123a30131f63684c09bd6ac77.tar patches-217a5b852e02775123a30131f63684c09bd6ac77.tar.gz |
system: Automatically add essential services.
* gnu/services/base.scm (%base-services): Remove calls to
'host-name-service', 'user-processes-service', and
'root-file-system-service'.
* gnu/system.scm (<operating-system>)[operating-system-services]: Rename
to...
[operating-system-user-services]: ... this.
(essential-services, operating-system-services): New procedures.
(operating-system-accounts, operating-system-etc-directory,
operating-system-boot-script, operating-system-derivation): Adjust to
new 'operating-system-services' return type.
Diffstat (limited to 'gnu/services')
-rw-r--r-- | gnu/services/base.scm | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/gnu/services/base.scm b/gnu/services/base.scm index ae538ea41c..5157349aec 100644 --- a/gnu/services/base.scm +++ b/gnu/services/base.scm @@ -267,13 +267,6 @@ This is the GNU operating system, welcome!\n\n"))) (mingetty-service "tty6" #:motd motd) (syslog-service) (guix-service) - (nscd-service) - - ;; FIXME: Make this an activation-time thing instead of a service. - (host-name-service "gnu") - - ;; The "root" services. - (user-processes-service) - (root-file-system-service)))) + (nscd-service)))) ;;; base.scm ends here |