services: syslog: Add 'configuration' action.

* gnu/services/base.scm (syslog-service-type): Add 'actions' field.
This commit is contained in:
Ludovic Courtès 2023-03-27 09:42:20 +02:00
parent da410b45a9
commit 384856c9fb
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -1554,14 +1554,17 @@ (define syslog-service-type
(shepherd-service-type (shepherd-service-type
'syslog 'syslog
(lambda (config) (lambda (config)
(define config-file
(syslog-configuration-config-file config))
(shepherd-service (shepherd-service
(documentation "Run the syslog daemon (syslogd).") (documentation "Run the syslog daemon (syslogd).")
(provision '(syslogd)) (provision '(syslogd))
(requirement '(user-processes)) (requirement '(user-processes))
(actions (list (shepherd-configuration-action config-file)))
(start #~(let ((spawn (make-forkexec-constructor (start #~(let ((spawn (make-forkexec-constructor
(list #$(syslog-configuration-syslogd config) (list #$(syslog-configuration-syslogd config)
"--rcfile" "--rcfile" #$config-file)
#$(syslog-configuration-config-file config))
#:pid-file "/var/run/syslog.pid"))) #:pid-file "/var/run/syslog.pid")))
(lambda () (lambda ()
;; Set the umask such that file permissions are #o640. ;; Set the umask such that file permissions are #o640.