From 6991ba8563e75280b0464335684c3dff6c5a3a26 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miloslav=20Trma=C4=8D?= Date: Wed, 20 Nov 2019 21:32:46 +0100 Subject: [PATCH] Mount /run/systemd/journal/socket into test-system containers MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The nested podman tries to write to it. This primarily only removes noise from logs, it does not seem to significantly change behavior. Signed-off-by: Miloslav Trmač --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 57c85908..91dca115 100644 --- a/Makefile +++ b/Makefile @@ -154,7 +154,7 @@ test-integration: build-container test-system: build-container DTEMP=$(shell mktemp -d --tmpdir=/var/tmp podman-tmp.XXXXXX); \ $(CONTAINER_CMD) --privileged --net=host \ - -v $$DTEMP:/var/lib/containers:Z \ + -v $$DTEMP:/var/lib/containers:Z -v /run/systemd/journal/socket:/run/systemd/journal/socket \ "$(IMAGE)" \ bash -c 'BUILDTAGS="$(BUILDTAGS)" hack/make.sh test-system'; \ rc=$$?; \