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
This commit is contained in:
Julia Kreger 2024-05-22 14:37:33 -07:00
parent e544379010
commit ac180b9ac6
1 changed files with 1 additions and 1 deletions

View File

@ -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)