mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 13:49:23 -05:00
services: dbus: Log to syslog.
* gnu/services/dbus.scm (dbus-shepherd-service): Add 'syslogd' to 'requirement'. Pass the "--syslog-only" command-line option.
This commit is contained in:
parent
a01d2e300a
commit
7462a1de22
1 changed files with 2 additions and 2 deletions
|
@ -195,10 +195,10 @@ (define dbus-shepherd-service
|
|||
(list (shepherd-service
|
||||
(documentation "Run the D-Bus system daemon.")
|
||||
(provision '(dbus-system))
|
||||
(requirement '(user-processes))
|
||||
(requirement '(user-processes syslogd))
|
||||
(start #~(make-forkexec-constructor
|
||||
(list (string-append #$dbus "/bin/dbus-daemon")
|
||||
"--nofork" "--system")
|
||||
"--nofork" "--system" "--syslog-only")
|
||||
#:pid-file "/var/run/dbus/pid"))
|
||||
(stop #~(make-kill-destructor)))))))
|
||||
|
||||
|
|
Loading…
Reference in a new issue