diff options
author | Ludovic Courtès <[email protected]> | 2025-03-10 18:21:23 +0100 |
---|---|---|
committer | Ludovic Courtès <[email protected]> | 2025-03-10 18:22:55 +0100 |
commit | 5b4ae0b5c2d63e40c8adaf15d9ce0c456189f321 (patch) | |
tree | 078b219d7119d029f1d0bbfe2d6accc99100dd13 | |
parent | 84e7feab83af2faf1083eb9283e923d0c9b8ad69 (diff) |
install: Use ‘shepherd-system-log-service-type’.
This is a followup to d0510dcd824e1b3fda62a8841e792581d7b8de8d, which
wrongfully assumed that this was already the case.
* gnu/system/install.scm (%installation-services): Replace
‘syslog-service-type’ by ‘shepherd-system-log-service-type’.
Change-Id: I349454b8d005c67d2c6d6b5475f74d16c9006006
-rw-r--r-- | gnu/system/install.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/system/install.scm b/gnu/system/install.scm index 4de903c59b..15ea401f1c 100644 --- a/gnu/system/install.scm +++ b/gnu/system/install.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2014-2022, 2024 Ludovic Courtès <[email protected]> +;;; Copyright © 2014-2022, 2024-2025 Ludovic Courtès <[email protected]> ;;; Copyright © 2015 Mark H Weaver <[email protected]> ;;; Copyright © 2016 Andreas Enge <[email protected]> ;;; Copyright © 2017 Marius Bakke <[email protected]> @@ -376,7 +376,7 @@ Access documentation at any time by pressing Alt-F2.\x1b[0m (normal-tty "tty6") ;; The usual services. - (service syslog-service-type) + (service shepherd-system-log-service-type) ;; Use the Avahi daemon to discover substitute servers on the local ;; network. It can be faster than fetching from remote servers. |