From 47f5feff68c3dbd7f142d3efe01a462d38bddd33 Mon Sep 17 00:00:00 2001 From: Mathieu Tortuyaux Date: Tue, 12 Oct 2021 16:27:29 +0200 Subject: [PATCH] jenkins/kola/container: fix verify-key sharing in systemd container `$verify_key` actually holds `--verify-key=verify.asc` so of course `systemd-nspawn` fails since it does not expect `--verify-key` value. Signed-off-by: Mathieu Tortuyaux --- jenkins/kola/dev-container.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jenkins/kola/dev-container.sh b/jenkins/kola/dev-container.sh index 4a99d4b1a0..73907f1e77 100755 --- a/jenkins/kola/dev-container.sh +++ b/jenkins/kola/dev-container.sh @@ -29,7 +29,7 @@ sudo systemd-nspawn $PIPEARG \ --bind-ro=/lib/modules \ --bind-ro="$PWD/flatcar_production_image_kernel_config.txt:/boot/config" \ --bind-ro="${GOOGLE_APPLICATION_CREDENTIALS}:/opt/credentials.json" \ - --bind-ro="${verify_key}:/opt/verify.asc" \ + --bind-ro="$PWD/verify.asc:/opt/verify.asc" \ --image=flatcar_developer_container.bin \ --machine=flatcar-developer-container-$(uuidgen) \ --tmpfs=/usr/src \