From d3c468fb11e2de4e52d09661d8d6fe40ecd7db66 Mon Sep 17 00:00:00 2001 From: Katerina Koukiou Date: Fri, 6 Oct 2023 13:15:05 +0200 Subject: [PATCH] webui: send stderr from webui-desktop to the journal Previously the error logs were swallowed. --- ui/webui/webui-desktop | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/webui/webui-desktop b/ui/webui/webui-desktop index 9f0679b83cd..1acdd09f6e9 100755 --- a/ui/webui/webui-desktop +++ b/ui/webui/webui-desktop @@ -99,7 +99,7 @@ fi # disable /etc/cockpit/ XDG_CONFIG_DIRS="$BROWSER_HOME" COCKPIT_SUPERUSER="pkexec" /usr/libexec/cockpit-ws -p 80 -a "$WEBUI_ADDRESS" --no-tls --local-session=cockpit-bridge & WS_PID=$! -exec 1>&2 +exec > >(systemd-cat -t anaconda) 2>&1 # Cleanup function cleanup() {