From ac180b9ac61b7c8577fe0d489a33b0dd805d8acb Mon Sep 17 00:00:00 2001 From: Julia Kreger Date: Wed, 22 May 2024 14:37:33 -0700 Subject: [PATCH] simple-init: Swap continue for true Continue is not valid, and in the current syntax usage for 80-simple-init, the error is logged. Swapped to true to act as a no-op. /tmp/in_target.d/post-install.d/80-simple-init: line 30: continue: \ only meaningful in a `for', `while', or `until' loop Change-Id: I9ddb9aadc1114c0f4dea14d31b9751d83a887a6b --- .../elements/simple-init/post-install.d/80-simple-init | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/diskimage_builder/elements/simple-init/post-install.d/80-simple-init b/diskimage_builder/elements/simple-init/post-install.d/80-simple-init index ed0457e0b..8971b85ca 100755 --- a/diskimage_builder/elements/simple-init/post-install.d/80-simple-init +++ b/diskimage_builder/elements/simple-init/post-install.d/80-simple-init @@ -27,7 +27,7 @@ case "$DIB_INIT_SYSTEM" in else # NOTE(ianw): it might be better to whitelist platforms in # the future, but for now assume it will "just work" - continue + true fi ;; openrc)