services: syslog: Use a PID file.
* gnu/services/base.scm (syslog-service-type)[start]: Remove --no-detach and use #:pid-file.
This commit is contained in:
parent
e4a01b7d4d
commit
afa54a38b7
|
@ -907,8 +907,8 @@ Service Switch}, for an example."
|
|||
(requirement '(user-processes))
|
||||
(start #~(make-forkexec-constructor
|
||||
(list #$(syslog-configuration-syslogd config)
|
||||
"--no-detach"
|
||||
"--rcfile" #$(syslog-configuration-config-file config))))
|
||||
"--rcfile" #$(syslog-configuration-config-file config))
|
||||
#:pid-file "/var/run/syslog.pid"))
|
||||
(stop #~(make-kill-destructor))))))
|
||||
|
||||
;; Snippet adapted from the GNU inetutils manual.
|
||||
|
|
Loading…
Reference in New Issue