From 7b07ffe8abde1d27d02b5144856e14eca58a8812 Mon Sep 17 00:00:00 2001 From: Dusty Mabe Date: Wed, 1 May 2024 15:38:00 -0400 Subject: [PATCH] mantle/platform/qemu: drop json formatting from journal output In my experience the value of this has been little to none. It mostly just forces us to filter this output through jq -r .MESSAGE Let's make it just output text like the non-testiso journal.txt files are today. --- mantle/platform/qemu.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mantle/platform/qemu.go b/mantle/platform/qemu.go index 2aaf2d16f0..9eed1fa049 100644 --- a/mantle/platform/qemu.go +++ b/mantle/platform/qemu.go @@ -1645,7 +1645,7 @@ func (builder *QemuBuilder) VirtioJournal(config *conf.Conf, queryArguments stri StandardOutput=file:/dev/virtio-ports/mantlejournal # Wrap in /bin/bash to hack around SELinux # https://bugzilla.redhat.com/show_bug.cgi?id=1942198 - ExecStart=/usr/bin/bash -c "journalctl -q -b -f -o json --no-tail %s" + ExecStart=/usr/bin/bash -c "journalctl -q -b -f --no-tail %s" [Install] RequiredBy=basic.target `, queryArguments)