diff options
| author | Ludovic Courtès <ludo@gnu.org> | 2019-01-10 23:33:36 +0100 | 
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2019-01-11 12:14:38 +0100 | 
| commit | 84a2de36a10dc2ab80f86e16721cbd228c85279e (patch) | |
| tree | 83be420bf45f903b0c6202f37802a925b129f275 /gnu/system/install.scm | |
| parent | babfd9447df08a809622238b4830eb046dab2ba6 (diff) | |
services: Deprecate a few more service procedures.
These procedures were already either undocumented (and de facto
deprecated) or documented as deprecated or redundant.
* gnu/services/base.scm (guix-service, guix-publish-service): Mark as
deprecated.
* gnu/services/mcron.scm (mcron-service): Likewise.
* gnu/services/networking.scm (tor-service): Likewise.
* doc/guix.texi (Scheduled Job Execution): Remove 'mcron-service' and
adjust example.
(Networking Services): Remove 'tor-service'.
* gnu/tests/base.scm (%mcron-os): Use 'mcron-service-type' instead of
'mcron-service'.
* gnu/tests/networking.scm (%tor-os): Use 'tor-service-type' instead of
'tor-service'.
* tests/guix-system.sh: Likewise.
Diffstat (limited to 'gnu/system/install.scm')
| -rw-r--r-- | gnu/system/install.scm | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/gnu/system/install.scm b/gnu/system/install.scm index c345ba0626..19a6f6a038 100644 --- a/gnu/system/install.scm +++ b/gnu/system/install.scm @@ -253,7 +253,8 @@ You have been warned.  Thanks for being so brave.\x1b[0m            ;; The build daemon.  Register the official server keys as trusted.            ;; This allows the installation process to use substitutes by            ;; default. -          (guix-service (guix-configuration (authorize-key? #t))) +          (service guix-service-type +                   (guix-configuration (authorize-key? #t)))            ;; Start udev so that useful device nodes are available.            ;; Use device-mapper rules for cryptsetup & co; enable the CRDA for | 
