* bug#48323: guix-daemon.service and guix-publish.service use deprecated StandardError/StandardOutput features @ 2021-05-09 20:07 Vagrant Cascadian 2022-04-29 14:51 ` Ludovic Courtès 0 siblings, 1 reply; 4+ messages in thread From: Vagrant Cascadian @ 2021-05-09 20:07 UTC (permalink / raw) To: 48323 [-- Attachment #1: Type: text/plain, Size: 1529 bytes --] Both guix-daemon.service and guix-publish.service make use of StandardError=syslog and StandardOutput=syslog. When building a guix 1.2.0 or 1.3.0rc* on Debian, I get the following warnings when checking with lintian: W: guix: systemd-service-file-uses-deprecated-syslog-facility lib/systemd/system/guix-daemon.service StandardError=syslog N: W: systemd-service-file-uses-deprecated-syslog-facility N: N: The specified systemd service file specifies StandardOutput= or N: StandardError= that references syslog or syslog-console. N: N: This is discouraged, and systemd versions 246 and above will log a N: warning about this. N: N: Refer to N: https://github.com/systemd/systemd/blob/6706384a89ae0c462e7172588c80667190c4d9e2/NEWS#L724 N: for details. N: N: Severity: warning N: N: Check: systemd Following the above link has this to say: * StandardError= and StandardOutput= in unit files no longer support the "syslog" and "syslog-console" switches. They were long removed from the documentation, but will now result in warnings when used, and be converted to "journal" and "journal+console" automatically. So apparently need to switch the .service files to use "journal". I am not sure what implications that would have for installing guix on a foreign distro, such as minimum systemd version, or if anything needs significant changes. Presumably at some point support for this Standard*=syslog will be dropped entirely from systemd... live well, vagrant [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 227 bytes --] ^ permalink raw reply [flat|nested] 4+ messages in thread
* bug#48323: guix-daemon.service and guix-publish.service use deprecated StandardError/StandardOutput features 2021-05-09 20:07 bug#48323: guix-daemon.service and guix-publish.service use deprecated StandardError/StandardOutput features Vagrant Cascadian @ 2022-04-29 14:51 ` Ludovic Courtès 2023-07-20 19:35 ` Vagrant Cascadian 0 siblings, 1 reply; 4+ messages in thread From: Ludovic Courtès @ 2022-04-29 14:51 UTC (permalink / raw) To: Vagrant Cascadian; +Cc: 48323 Hi! Vagrant Cascadian <vagrant@debian.org> skribis: > Both guix-daemon.service and guix-publish.service make use of > StandardError=syslog and StandardOutput=syslog. [...] > So apparently need to switch the .service files to use "journal". I am > not sure what implications that would have for installing guix on a > foreign distro, such as minimum systemd version, or if anything needs > significant changes. Could you confirm that setting those to “journal” works on Debian? If it does, it’s probably safe now to make this change, so feel free to commit it in Guix. Thanks, Ludo’. ^ permalink raw reply [flat|nested] 4+ messages in thread
* bug#48323: guix-daemon.service and guix-publish.service use deprecated StandardError/StandardOutput features 2022-04-29 14:51 ` Ludovic Courtès @ 2023-07-20 19:35 ` Vagrant Cascadian 2024-03-11 21:52 ` Vagrant Cascadian 0 siblings, 1 reply; 4+ messages in thread From: Vagrant Cascadian @ 2023-07-20 19:35 UTC (permalink / raw) To: Ludovic Courtès; +Cc: 48323 [-- Attachment #1.1: Type: text/plain, Size: 852 bytes --] On 2022-04-29, Ludovic Courtès wrote: > Vagrant Cascadian <vagrant@debian.org> skribis: > >> Both guix-daemon.service and guix-publish.service make use of >> StandardError=syslog and StandardOutput=syslog. > > [...] > >> So apparently need to switch the .service files to use "journal". I am >> not sure what implications that would have for installing guix on a >> foreign distro, such as minimum systemd version, or if anything needs >> significant changes. > > Could you confirm that setting those to “journal” works on Debian? > > If it does, it’s probably safe now to make this change, so feel free to > commit it in Guix. So, I finally got around to testing this... Feels a little odd just pushing after testing over a year later, although the patch is fairly trivial... Patch attached! live well, vagrant [-- Attachment #1.2: 0001-etc-systemd-services-switch-to-journal-for-output-an.patch --] [-- Type: text/x-diff, Size: 2295 bytes --] From 2c3a09314b0223531ab41407d619bcf300b4f422 Mon Sep 17 00:00:00 2001 From: Vagrant Cascadian <vagrant@debian.org> Date: Thu, 20 Jul 2023 12:13:55 -0700 Subject: [PATCH] etc: systemd services: switch to "journal" for output and error logging. The "syslog" method has been deprecated for years, and issues a warning: Standard output type syslog is obsolete, automatically updating to journal. Please update your unit file, and consider removing the setting altogether. Fixes: #48323 * etc/guix-daemon.service.in (StandardOutput): Use "journal" (StandardError): Likewise. * etc/guix-publish.service.in (StandardOutput): Likewise. (StandardError): Likewise. --- etc/guix-daemon.service.in | 4 ++-- etc/guix-publish.service.in | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/etc/guix-daemon.service.in b/etc/guix-daemon.service.in index 9dbc3b5678..5e75379b5e 100644 --- a/etc/guix-daemon.service.in +++ b/etc/guix-daemon.service.in @@ -9,8 +9,8 @@ Description=Build daemon for GNU Guix ExecStart=@localstatedir@/guix/profiles/per-user/root/current-guix/bin/guix-daemon \ --build-users-group=guixbuild --discover=no Environment='GUIX_LOCPATH=@localstatedir@/guix/profiles/per-user/root/guix-profile/lib/locale' LC_ALL=en_US.utf8 -StandardOutput=syslog -StandardError=syslog +StandardOutput=journal +StandardError=journal # Work around a nasty systemd ‘feature’ that kills the entire process tree # (including the daemon!) if any child, such as cc1plus, runs out of memory. diff --git a/etc/guix-publish.service.in b/etc/guix-publish.service.in index b8fd3b4c03..0d82e73d94 100644 --- a/etc/guix-publish.service.in +++ b/etc/guix-publish.service.in @@ -11,8 +11,8 @@ After=guix-daemon.service [Service] ExecStart=@localstatedir@/guix/profiles/per-user/root/current-guix/bin/guix publish --user=nobody --port=8181 Environment='GUIX_LOCPATH=@localstatedir@/guix/profiles/per-user/root/guix-profile/lib/locale' LC_ALL=en_US.utf8 -StandardOutput=syslog -StandardError=syslog +StandardOutput=journal +StandardError=journal # Despite the name, this is rate-limited: a broken daemon will eventually fail. Restart=always base-commit: 21b718f4d6c3ded8ef50d12f6e9ae6474f74620f -- 2.39.2 [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 227 bytes --] ^ permalink raw reply related [flat|nested] 4+ messages in thread
* bug#48323: guix-daemon.service and guix-publish.service use deprecated StandardError/StandardOutput features 2023-07-20 19:35 ` Vagrant Cascadian @ 2024-03-11 21:52 ` Vagrant Cascadian 0 siblings, 0 replies; 4+ messages in thread From: Vagrant Cascadian @ 2024-03-11 21:52 UTC (permalink / raw) To: Ludovic Courtès; +Cc: 48323-done [-- Attachment #1: Type: text/plain, Size: 979 bytes --] On 2023-07-20, Vagrant Cascadian wrote: > On 2022-04-29, Ludovic Courtès wrote: >> Vagrant Cascadian <vagrant@debian.org> skribis: >> >>> Both guix-daemon.service and guix-publish.service make use of >>> StandardError=syslog and StandardOutput=syslog. >> >> [...] >> >>> So apparently need to switch the .service files to use "journal". I am >>> not sure what implications that would have for installing guix on a >>> foreign distro, such as minimum systemd version, or if anything needs >>> significant changes. >> >> Could you confirm that setting those to “journal” works on Debian? >> >> If it does, it’s probably safe now to make this change, so feel free to >> commit it in Guix. > > So, I finally got around to testing this... > > Feels a little odd just pushing after testing over a year later, > although the patch is fairly trivial... And finally pushed the patch, as 5f100c68a4a8ef9ed5599bb99c910018869bc6f3! live well, vagrant [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 227 bytes --] ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-03-11 21:53 UTC | newest] Thread overview: 4+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2021-05-09 20:07 bug#48323: guix-daemon.service and guix-publish.service use deprecated StandardError/StandardOutput features Vagrant Cascadian 2022-04-29 14:51 ` Ludovic Courtès 2023-07-20 19:35 ` Vagrant Cascadian 2024-03-11 21:52 ` Vagrant Cascadian
Code repositories for project(s) associated with this external index https://git.savannah.gnu.org/cgit/guix.git This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.