diff options
author | Ludovic Courtès <ludo@gnu.org> | 2022-03-10 23:14:27 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-03-10 23:46:51 +0100 |
commit | 1b8f6a4cadf1715d3e4dc03dde06956fa3defdb6 (patch) | |
tree | 406bd1228be18e15d8dd75170fc415cc6555cd24 /gnu/services.scm | |
parent | 2bac6ea177d5b3353ea1a4d032d17a6ac3763e96 (diff) | |
download | guix-1b8f6a4cadf1715d3e4dc03dde06956fa3defdb6.tar.gz |
services: startup: Add description.
* gnu/services.scm (hurd-startup-service-type)[description]: New field.
Diffstat (limited to 'gnu/services.scm')
-rw-r--r-- | gnu/services.scm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/services.scm b/gnu/services.scm index 68fa4ebb63..e3d4fcc232 100644 --- a/gnu/services.scm +++ b/gnu/services.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ludovic Courtès <ludo@gnu.org> +;;; Copyright © 2015-2022 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2016 Chris Marusich <cmmarusich@gmail.com> ;;; Copyright © 2020 Jan (janneke) Nieuwenhuizen <janneke@gnu.org> ;;; Copyright © 2020, 2021 Ricardo Wurmus <rekado@elephly.net> @@ -735,7 +735,9 @@ directory." (service-type (name 'startup) (extensions (list (service-extension system-service-type hurd-rc-entry))) - (default-value %hurd-rc-script))) + (default-value %hurd-rc-script) + (description "This service creates an @file{rc} script in the +system; that script is responsible for booting the Hurd."))) (define %hurd-startup-service ;; The service that produces the RC script. |