From 41da37441e2c1dc6cf151034e2afb3ddd0b81577 Mon Sep 17 00:00:00 2001 From: Luke Yang Date: Wed, 3 Jul 2024 15:26:30 -0400 Subject: [PATCH] wip --- tests/e2e/bootc-install.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/e2e/bootc-install.sh b/tests/e2e/bootc-install.sh index 60be8230b..9976572dd 100755 --- a/tests/e2e/bootc-install.sh +++ b/tests/e2e/bootc-install.sh @@ -259,7 +259,7 @@ ansible-playbook -v \ # Prepare upgrade containerfile greenprint "Create upgrade Containerfile" -tee "$UPGRADE_CONTAINERFILE" > /dev/null << EOF +tee "$UPGRADE_CONTAINERFILE" > /dev/null << REALEOF FROM "$TEST_IMAGE_URL" RUN dnf -y install wget && \ dnf -y clean all @@ -267,6 +267,7 @@ RUN rm /usr/lib/bootc/kargs.d/01-console.toml RUN cat <> /usr/lib/bootc/kargs.d/01-console.toml kargs = ["systemd.unified_cgroup_hierarchy=1","console=ttyS","panic=0"] EOF +REALEOF # Build upgrade container image and push to locay registry greenprint "Build $TEST_OS upgrade container image"