1
0
mirror of https://passt.top/passt synced 2024-06-30 15:02:40 +00:00

test: Avoid hitting guestfish command length limits

In test/prepare-distro-img.sh we use guestfish to tweak our distro guest
images to be suitable.  Part of this is using a 'copy-in' directive to copy
in the source files for passt itself.  Currently we copy in all the files
with a single 'copy-in', since it allows listing multiple files.  However
it turns out that the number of arguments it can accept is fairly limited
and our current list of files is already very close to that limit.

Instead, expand our list of files to one copy-in per file, avoiding that
limitation.  This isn't much slower, because all the commands still run in
a single invocation of guestfish itself.

Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
This commit is contained in:
David Gibson 2023-11-30 13:02:19 +11:00 committed by Stefano Brivio
parent 705549f834
commit 460064d262

View File

@ -14,5 +14,5 @@ rm-f /etc/init.d/cloud-config
rm-f /etc/init.d/cloud-final
rm-f /etc/init.d/cloud-init
rm-f /etc/init.d/cloud-init-local
copy-in $PASST_FILES /root/
$(for f in $PASST_FILES; do echo copy-in $f /root; done)
EOF