[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/15: services: dbus: Log to stderr rather than syslog.
From: |
guix-commits |
Subject: |
03/15: services: dbus: Log to stderr rather than syslog. |
Date: |
Sun, 2 Jun 2024 14:56:48 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit b9b0f0a995e5341407add3a6ddb038d7967cb69f
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Mon May 20 22:29:25 2024 +0200
services: dbus: Log to stderr rather than syslog.
* gnu/services/dbus.scm (dbus-shepherd-service): Remove ‘--syslog-only’
option and pass #:log-file unconditionally.
Change-Id: I9e42f241e08b95ff01e9ad69551bc2c7ce869d6d
---
gnu/services/dbus.scm | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/gnu/services/dbus.scm b/gnu/services/dbus.scm
index 8dee91a3f7..1e1380185a 100644
--- a/gnu/services/dbus.scm
+++ b/gnu/services/dbus.scm
@@ -1,5 +1,5 @@
;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2013, 2014, 2015, 2016, 2017, 2019, 2020, 2021 Ludovic Courtès
<ludo@gnu.org>
+;;; Copyright © 2013-2017, 2019-2021, 2024 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2015 Sou Bunnbu <iyzsong@gmail.com>
;;; Copyright © 2021 Maxime Devos <maximedevos@telenet.be>
;;; Copyright © 2021 Brice Waegeneire <brice@waegenei.re>
@@ -234,12 +234,12 @@ includes the @code{etc/dbus-1/system.d} directories of
each package listed in
(requirement '(user-processes syslogd))
(start #~(make-forkexec-constructor
(list (string-append #$dbus "/bin/dbus-daemon")
- "--nofork" "--system" "--syslog-only")
+ "--nofork" "--system")
+ #:log-file "/var/log/dbus-daemon.log"
#$@(if verbose?
;; Since the verbose output goes to the console,
;; not syslog, add a log file to capture it.
- '(#:environment-variables '("DBUS_VERBOSE=1")
- #:log-file "/var/log/dbus-daemon.log")
+ '(#:environment-variables '("DBUS_VERBOSE=1"))
'())
#:pid-file "/run/dbus/pid"))
(stop #~(make-kill-destructor)))))))
- branch master updated (bc06affabc -> 2e53fa5346), guix-commits, 2024/06/03
- 15/15: gnu: Add nsncd., guix-commits, 2024/06/03
- 02/15: services: tor: Log to stderr rather than syslog., guix-commits, 2024/06/03
- 03/15: services: dbus: Log to stderr rather than syslog.,
guix-commits <=
- 01/15: services: nscd: ‘log-file’ defaults to #f., guix-commits, 2024/06/03
- 11/15: gnu: Add rust-nix-0.28., guix-commits, 2024/06/03
- 06/15: gnu: emacs-org: Update to 9.6.30., guix-commits, 2024/06/03
- 05/15: services: darkstat: Depend on ‘user-processes’., guix-commits, 2024/06/03
- 12/15: gnu: Add rust-dns-lookup-2., guix-commits, 2024/06/03
- 10/15: gnu: Add rust-libc-0.2.153., guix-commits, 2024/06/03
- 13/15: gnu: Add rust-temp-env-0.3., guix-commits, 2024/06/03
- 09/15: gnu: knot: Remove input labels., guix-commits, 2024/06/03
- 08/15: gnu: knot: Build against libbpf 0.8., guix-commits, 2024/06/03
- 14/15: gnu: Add rust-slog-async-2-8., guix-commits, 2024/06/03