guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/09: services: syslog: Add 'configuration' action.


From: guix-commits
Subject: 01/09: services: syslog: Add 'configuration' action.
Date: Mon, 27 Mar 2023 12:52:22 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit 384856c9fbe76d107107f49a575fc5c26e4e332e
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Mon Mar 27 09:42:20 2023 +0200

    services: syslog: Add 'configuration' action.
    
    * gnu/services/base.scm (syslog-service-type): Add 'actions' field.
---
 gnu/services/base.scm | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/gnu/services/base.scm b/gnu/services/base.scm
index 2c984a0747..5b0b3bb0ab 100644
--- a/gnu/services/base.scm
+++ b/gnu/services/base.scm
@@ -1554,14 +1554,17 @@ Service Switch}, for an example."
   (shepherd-service-type
    'syslog
    (lambda (config)
+     (define config-file
+       (syslog-configuration-config-file config))
+
      (shepherd-service
       (documentation "Run the syslog daemon (syslogd).")
       (provision '(syslogd))
       (requirement '(user-processes))
+      (actions (list (shepherd-configuration-action config-file)))
       (start #~(let ((spawn (make-forkexec-constructor
                              (list #$(syslog-configuration-syslogd config)
-                                   "--rcfile"
-                                   #$(syslog-configuration-config-file config))
+                                   "--rcfile" #$config-file)
                              #:pid-file "/var/run/syslog.pid")))
                  (lambda ()
                    ;; Set the umask such that file permissions are #o640.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]