From 8574907f59143e67f76acd66eded7b9c00e3ca06 Mon Sep 17 00:00:00 2001 From: Dominik Gedon Date: Tue, 10 Sep 2024 16:14:43 +0200 Subject: [PATCH] Output goes to `/var/log` Signed-off-by: Dominik Gedon --- backend_modules/libvirt/host/combustion | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/backend_modules/libvirt/host/combustion b/backend_modules/libvirt/host/combustion index 5eea1fa19..d72a3cc9a 100644 --- a/backend_modules/libvirt/host/combustion +++ b/backend_modules/libvirt/host/combustion @@ -32,7 +32,7 @@ fi %{ endif } # Redirect output to the console -exec > >(exec tee -a /dev/tty0) 2>&1 +exec > >(exec tee -a /var/log/combustion) 2>&1 %{ if image == "leapmicro55o" } # Name the Network Manager connections (final phase on real filesystem) @@ -163,6 +163,3 @@ zypper --non-interactive install $PACKAGES # Leave a marker echo "Configured with combustion" > /etc/issue.d/combustion - -# Close outputs and wait for tee to finish. -exec 1>&- 2>&-; wait; \ No newline at end of file