From 7bd8839960525b76ef8730433ee4ca4a660052ab Mon Sep 17 00:00:00 2001 From: BlubbFish Date: Wed, 19 Jan 2022 23:48:40 +0100 Subject: [PATCH] syslog to journal Standard output type syslog is obsolete, automatically updating to journal. Please update your unit file, and consider removing the setting altogether. --- deb/service-build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deb/service-build.sh b/deb/service-build.sh index a4c9a6a..b0daa45 100644 --- a/deb/service-build.sh +++ b/deb/service-build.sh @@ -72,7 +72,7 @@ if [[ -n "${LOGOUTPUT}" ]]; then else echo "StandardOutput=null" >> service-${NAME} fi -echo "StandardError=syslog" >> service-${NAME} +echo "StandardError=journal" >> service-${NAME} echo "" >> service-${NAME} echo "[Install]" >> service-${NAME} echo "WantedBy=multi-user.target" >> service-${NAME}