diff options
author | Bruno Victal <mirai@makinata.eu> | 2023-02-25 18:57:47 +0000 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2023-03-03 17:55:31 +0100 |
commit | cb00e600ffe7ec493464788dd16308b7b8e87d20 (patch) | |
tree | 2ad2be72f9adb8553063447bf74a89d276167d23 /gnu/system.scm | |
parent | c6480edbe3260a3bfb48361ca73e666b6d473f42 (diff) | |
download | guix-cb00e600ffe7ec493464788dd16308b7b8e87d20.tar.gz |
services: base: Deprecate 'host-name-service' procedure.
* doc/guix.texi (operating-system Reference): Reorder cross-reference. Add an anchor to be used ... (Base services): ... here by host-name-service-type. Document host-name-service-type. * gnu/services/base.scm: Export host-name-service-type. (host-name-service): Deprecate procedure. * gnu/system.scm (operating-system-default-essential-services): Use host-name-service-type. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/system.scm')
-rw-r--r-- | gnu/system.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/system.scm b/gnu/system.scm index 53f3c62bb0..bb26d7c9a5 100644 --- a/gnu/system.scm +++ b/gnu/system.scm @@ -782,7 +782,7 @@ bookkeeping." (operating-system-file-systems os))) (session-environment-service (operating-system-environment-variables os)) - (host-name-service host-name) + (service host-name-service-type host-name) procs root-fs (service setuid-program-service-type (operating-system-setuid-programs os)) |