From fbff3f6365d54d7cb44328ee43efaedf1f784285 Mon Sep 17 00:00:00 2001 From: Ben McClelland Date: Fri, 6 Mar 2026 08:39:26 -0800 Subject: [PATCH] fix: update deprecated StandardOutput/StandardError type Fix warnings from newer systemd: Standard output type syslog is obsolete, automatically updating to journal. This updates the stdout/stderr to journal output type which is what is getting set anyways after the syslog type has been deprecated. No expected behavior change with this other than quieting warnings. --- extra/versitygw@.service | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extra/versitygw@.service b/extra/versitygw@.service index 6c0ffefe..3764bd5a 100644 --- a/extra/versitygw@.service +++ b/extra/versitygw@.service @@ -8,8 +8,8 @@ AssertPathExists=/etc/versitygw.d/%i.conf [Service] WorkingDirectory=/root -StandardOutput=syslog -StandardError=syslog +StandardOutput=journal +StandardError=journal SyslogIdentifier=versitygw-%i User=root