diff options
Diffstat (limited to 'gnu/tests/reconfigure.scm')
-rw-r--r-- | gnu/tests/reconfigure.scm | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/gnu/tests/reconfigure.scm b/gnu/tests/reconfigure.scm index a24a953e6e..77cbe16a9c 100644 --- a/gnu/tests/reconfigure.scm +++ b/gnu/tests/reconfigure.scm @@ -1,6 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2019 Jakob L. Kreuze <[email protected]> -;;; Copyright © 2024 Ludovic Courtès <[email protected]> +;;; Copyright © 2024-2025 Ludovic Courtès <[email protected]> ;;; ;;; This file is part of GNU Guix. ;;; @@ -190,13 +190,12 @@ Shepherd (PID 1) by unloading obsolete services and loading new services." (operating-system (inherit %simple-os) (services (modify-services %base-services - (syslog-service-type - config => (syslog-configuration - (inherit config) - (config-file - (plain-file - "syslog.conf" - "*.* /dev/console\n"))))))) + (shepherd-system-log-service-type + config + => + (system-log-configuration + (inherit config) + (message-destination #~(const '("/dev/console")))))))) #:imported-modules '((gnu services herd) (guix combinators)))) |