Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue #153 - revert eval of terminating commands #155

Merged
merged 2 commits into from
Aug 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion amazoncorretto/10.0/jdk11-alpine/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ if expr "$*" : 'java .*/start\.jar.*$' >/dev/null ; then
shift
# The first $JAVA_OPTIONS is for the JVM which will do the --dry-run,
# the second one is used when generating the --dry-run output.
eval "exec $JAVA $JAVA_OPTIONS \"\$@\" $JAVA_OPTIONS $JETTY_PROPERTIES"
echo "exec " $JAVA $JAVA_OPTIONS "$@" $JAVA_OPTIONS $JETTY_PROPERTIES > $JETTY_BASE/jetty.exec
. $JETTY_BASE/jetty.exec
esac
done

Expand Down
3 changes: 2 additions & 1 deletion amazoncorretto/10.0/jdk11/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ if expr "$*" : 'java .*/start\.jar.*$' >/dev/null ; then
shift
# The first $JAVA_OPTIONS is for the JVM which will do the --dry-run,
# the second one is used when generating the --dry-run output.
eval "exec $JAVA $JAVA_OPTIONS \"\$@\" $JAVA_OPTIONS $JETTY_PROPERTIES"
echo "exec " $JAVA $JAVA_OPTIONS "$@" $JAVA_OPTIONS $JETTY_PROPERTIES > $JETTY_BASE/jetty.exec
. $JETTY_BASE/jetty.exec
esac
done

Expand Down
3 changes: 2 additions & 1 deletion amazoncorretto/10.0/jdk17-alpine/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ if expr "$*" : 'java .*/start\.jar.*$' >/dev/null ; then
shift
# The first $JAVA_OPTIONS is for the JVM which will do the --dry-run,
# the second one is used when generating the --dry-run output.
eval "exec $JAVA $JAVA_OPTIONS \"\$@\" $JAVA_OPTIONS $JETTY_PROPERTIES"
echo "exec " $JAVA $JAVA_OPTIONS "$@" $JAVA_OPTIONS $JETTY_PROPERTIES > $JETTY_BASE/jetty.exec
. $JETTY_BASE/jetty.exec
esac
done

Expand Down
3 changes: 2 additions & 1 deletion amazoncorretto/10.0/jdk17/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ if expr "$*" : 'java .*/start\.jar.*$' >/dev/null ; then
shift
# The first $JAVA_OPTIONS is for the JVM which will do the --dry-run,
# the second one is used when generating the --dry-run output.
eval "exec $JAVA $JAVA_OPTIONS \"\$@\" $JAVA_OPTIONS $JETTY_PROPERTIES"
echo "exec " $JAVA $JAVA_OPTIONS "$@" $JAVA_OPTIONS $JETTY_PROPERTIES > $JETTY_BASE/jetty.exec
. $JETTY_BASE/jetty.exec
esac
done

Expand Down
3 changes: 2 additions & 1 deletion amazoncorretto/11.0/jdk11-alpine/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ if expr "$*" : 'java .*/start\.jar.*$' >/dev/null ; then
shift
# The first $JAVA_OPTIONS is for the JVM which will do the --dry-run,
# the second one is used when generating the --dry-run output.
eval "exec $JAVA $JAVA_OPTIONS \"\$@\" $JAVA_OPTIONS $JETTY_PROPERTIES"
echo "exec " $JAVA $JAVA_OPTIONS "$@" $JAVA_OPTIONS $JETTY_PROPERTIES > $JETTY_BASE/jetty.exec
. $JETTY_BASE/jetty.exec
esac
done

Expand Down
3 changes: 2 additions & 1 deletion amazoncorretto/11.0/jdk11/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ if expr "$*" : 'java .*/start\.jar.*$' >/dev/null ; then
shift
# The first $JAVA_OPTIONS is for the JVM which will do the --dry-run,
# the second one is used when generating the --dry-run output.
eval "exec $JAVA $JAVA_OPTIONS \"\$@\" $JAVA_OPTIONS $JETTY_PROPERTIES"
echo "exec " $JAVA $JAVA_OPTIONS "$@" $JAVA_OPTIONS $JETTY_PROPERTIES > $JETTY_BASE/jetty.exec
. $JETTY_BASE/jetty.exec
esac
done

Expand Down
3 changes: 2 additions & 1 deletion amazoncorretto/11.0/jdk17-alpine/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ if expr "$*" : 'java .*/start\.jar.*$' >/dev/null ; then
shift
# The first $JAVA_OPTIONS is for the JVM which will do the --dry-run,
# the second one is used when generating the --dry-run output.
eval "exec $JAVA $JAVA_OPTIONS \"\$@\" $JAVA_OPTIONS $JETTY_PROPERTIES"
echo "exec " $JAVA $JAVA_OPTIONS "$@" $JAVA_OPTIONS $JETTY_PROPERTIES > $JETTY_BASE/jetty.exec
. $JETTY_BASE/jetty.exec
esac
done

Expand Down
3 changes: 2 additions & 1 deletion amazoncorretto/11.0/jdk17/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ if expr "$*" : 'java .*/start\.jar.*$' >/dev/null ; then
shift
# The first $JAVA_OPTIONS is for the JVM which will do the --dry-run,
# the second one is used when generating the --dry-run output.
eval "exec $JAVA $JAVA_OPTIONS \"\$@\" $JAVA_OPTIONS $JETTY_PROPERTIES"
echo "exec " $JAVA $JAVA_OPTIONS "$@" $JAVA_OPTIONS $JETTY_PROPERTIES > $JETTY_BASE/jetty.exec
. $JETTY_BASE/jetty.exec
esac
done

Expand Down
3 changes: 2 additions & 1 deletion amazoncorretto/12.0/jdk17-alpine/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ if expr "$*" : 'java .*/start\.jar.*$' >/dev/null ; then
shift
# The first $JAVA_OPTIONS is for the JVM which will do the --dry-run,
# the second one is used when generating the --dry-run output.
eval "exec $JAVA $JAVA_OPTIONS \"\$@\" $JAVA_OPTIONS $JETTY_PROPERTIES"
echo "exec " $JAVA $JAVA_OPTIONS "$@" $JAVA_OPTIONS $JETTY_PROPERTIES > $JETTY_BASE/jetty.exec
. $JETTY_BASE/jetty.exec
esac
done

Expand Down
3 changes: 2 additions & 1 deletion amazoncorretto/12.0/jdk17/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ if expr "$*" : 'java .*/start\.jar.*$' >/dev/null ; then
shift
# The first $JAVA_OPTIONS is for the JVM which will do the --dry-run,
# the second one is used when generating the --dry-run output.
eval "exec $JAVA $JAVA_OPTIONS \"\$@\" $JAVA_OPTIONS $JETTY_PROPERTIES"
echo "exec " $JAVA $JAVA_OPTIONS "$@" $JAVA_OPTIONS $JETTY_PROPERTIES > $JETTY_BASE/jetty.exec
. $JETTY_BASE/jetty.exec
esac
done

Expand Down
3 changes: 2 additions & 1 deletion amazoncorretto/9.4/jdk11-alpine/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ if expr "$*" : 'java .*/start\.jar.*$' >/dev/null ; then
shift
# The first $JAVA_OPTIONS is for the JVM which will do the --dry-run,
# the second one is used when generating the --dry-run output.
eval "exec $JAVA $JAVA_OPTIONS \"\$@\" $JAVA_OPTIONS $JETTY_PROPERTIES"
echo "exec " $JAVA $JAVA_OPTIONS "$@" $JAVA_OPTIONS $JETTY_PROPERTIES > $JETTY_BASE/jetty.exec
. $JETTY_BASE/jetty.exec
esac
done

Expand Down
3 changes: 2 additions & 1 deletion amazoncorretto/9.4/jdk11/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ if expr "$*" : 'java .*/start\.jar.*$' >/dev/null ; then
shift
# The first $JAVA_OPTIONS is for the JVM which will do the --dry-run,
# the second one is used when generating the --dry-run output.
eval "exec $JAVA $JAVA_OPTIONS \"\$@\" $JAVA_OPTIONS $JETTY_PROPERTIES"
echo "exec " $JAVA $JAVA_OPTIONS "$@" $JAVA_OPTIONS $JETTY_PROPERTIES > $JETTY_BASE/jetty.exec
. $JETTY_BASE/jetty.exec
esac
done

Expand Down
3 changes: 2 additions & 1 deletion amazoncorretto/9.4/jdk17-alpine/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ if expr "$*" : 'java .*/start\.jar.*$' >/dev/null ; then
shift
# The first $JAVA_OPTIONS is for the JVM which will do the --dry-run,
# the second one is used when generating the --dry-run output.
eval "exec $JAVA $JAVA_OPTIONS \"\$@\" $JAVA_OPTIONS $JETTY_PROPERTIES"
echo "exec " $JAVA $JAVA_OPTIONS "$@" $JAVA_OPTIONS $JETTY_PROPERTIES > $JETTY_BASE/jetty.exec
. $JETTY_BASE/jetty.exec
esac
done

Expand Down
3 changes: 2 additions & 1 deletion amazoncorretto/9.4/jdk17/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ if expr "$*" : 'java .*/start\.jar.*$' >/dev/null ; then
shift
# The first $JAVA_OPTIONS is for the JVM which will do the --dry-run,
# the second one is used when generating the --dry-run output.
eval "exec $JAVA $JAVA_OPTIONS \"\$@\" $JAVA_OPTIONS $JETTY_PROPERTIES"
echo "exec " $JAVA $JAVA_OPTIONS "$@" $JAVA_OPTIONS $JETTY_PROPERTIES > $JETTY_BASE/jetty.exec
. $JETTY_BASE/jetty.exec
esac
done

Expand Down
3 changes: 2 additions & 1 deletion amazoncorretto/9.4/jdk8-alpine/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ if expr "$*" : 'java .*/start\.jar.*$' >/dev/null ; then
shift
# The first $JAVA_OPTIONS is for the JVM which will do the --dry-run,
# the second one is used when generating the --dry-run output.
eval "exec $JAVA $JAVA_OPTIONS \"\$@\" $JAVA_OPTIONS $JETTY_PROPERTIES"
echo "exec " $JAVA $JAVA_OPTIONS "$@" $JAVA_OPTIONS $JETTY_PROPERTIES > $JETTY_BASE/jetty.exec
. $JETTY_BASE/jetty.exec
esac
done

Expand Down
3 changes: 2 additions & 1 deletion amazoncorretto/9.4/jdk8/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ if expr "$*" : 'java .*/start\.jar.*$' >/dev/null ; then
shift
# The first $JAVA_OPTIONS is for the JVM which will do the --dry-run,
# the second one is used when generating the --dry-run output.
eval "exec $JAVA $JAVA_OPTIONS \"\$@\" $JAVA_OPTIONS $JETTY_PROPERTIES"
echo "exec " $JAVA $JAVA_OPTIONS "$@" $JAVA_OPTIONS $JETTY_PROPERTIES > $JETTY_BASE/jetty.exec
. $JETTY_BASE/jetty.exec
esac
done

Expand Down
3 changes: 2 additions & 1 deletion azul/zulu-openjdk-alpine/10.0/jdk11/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ if expr "$*" : 'java .*/start\.jar.*$' >/dev/null ; then
shift
# The first $JAVA_OPTIONS is for the JVM which will do the --dry-run,
# the second one is used when generating the --dry-run output.
eval "exec $JAVA $JAVA_OPTIONS \"\$@\" $JAVA_OPTIONS $JETTY_PROPERTIES"
echo "exec " $JAVA $JAVA_OPTIONS "$@" $JAVA_OPTIONS $JETTY_PROPERTIES > $JETTY_BASE/jetty.exec
. $JETTY_BASE/jetty.exec
esac
done

Expand Down
3 changes: 2 additions & 1 deletion azul/zulu-openjdk-alpine/10.0/jdk17/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ if expr "$*" : 'java .*/start\.jar.*$' >/dev/null ; then
shift
# The first $JAVA_OPTIONS is for the JVM which will do the --dry-run,
# the second one is used when generating the --dry-run output.
eval "exec $JAVA $JAVA_OPTIONS \"\$@\" $JAVA_OPTIONS $JETTY_PROPERTIES"
echo "exec " $JAVA $JAVA_OPTIONS "$@" $JAVA_OPTIONS $JETTY_PROPERTIES > $JETTY_BASE/jetty.exec
. $JETTY_BASE/jetty.exec
esac
done

Expand Down
3 changes: 2 additions & 1 deletion azul/zulu-openjdk-alpine/11.0/jdk11/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ if expr "$*" : 'java .*/start\.jar.*$' >/dev/null ; then
shift
# The first $JAVA_OPTIONS is for the JVM which will do the --dry-run,
# the second one is used when generating the --dry-run output.
eval "exec $JAVA $JAVA_OPTIONS \"\$@\" $JAVA_OPTIONS $JETTY_PROPERTIES"
echo "exec " $JAVA $JAVA_OPTIONS "$@" $JAVA_OPTIONS $JETTY_PROPERTIES > $JETTY_BASE/jetty.exec
. $JETTY_BASE/jetty.exec
esac
done

Expand Down
3 changes: 2 additions & 1 deletion azul/zulu-openjdk-alpine/11.0/jdk17/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ if expr "$*" : 'java .*/start\.jar.*$' >/dev/null ; then
shift
# The first $JAVA_OPTIONS is for the JVM which will do the --dry-run,
# the second one is used when generating the --dry-run output.
eval "exec $JAVA $JAVA_OPTIONS \"\$@\" $JAVA_OPTIONS $JETTY_PROPERTIES"
echo "exec " $JAVA $JAVA_OPTIONS "$@" $JAVA_OPTIONS $JETTY_PROPERTIES > $JETTY_BASE/jetty.exec
. $JETTY_BASE/jetty.exec
esac
done

Expand Down
3 changes: 2 additions & 1 deletion azul/zulu-openjdk-alpine/12.0/jdk17/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ if expr "$*" : 'java .*/start\.jar.*$' >/dev/null ; then
shift
# The first $JAVA_OPTIONS is for the JVM which will do the --dry-run,
# the second one is used when generating the --dry-run output.
eval "exec $JAVA $JAVA_OPTIONS \"\$@\" $JAVA_OPTIONS $JETTY_PROPERTIES"
echo "exec " $JAVA $JAVA_OPTIONS "$@" $JAVA_OPTIONS $JETTY_PROPERTIES > $JETTY_BASE/jetty.exec
. $JETTY_BASE/jetty.exec
esac
done

Expand Down
3 changes: 2 additions & 1 deletion azul/zulu-openjdk-alpine/9.4/jdk11/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ if expr "$*" : 'java .*/start\.jar.*$' >/dev/null ; then
shift
# The first $JAVA_OPTIONS is for the JVM which will do the --dry-run,
# the second one is used when generating the --dry-run output.
eval "exec $JAVA $JAVA_OPTIONS \"\$@\" $JAVA_OPTIONS $JETTY_PROPERTIES"
echo "exec " $JAVA $JAVA_OPTIONS "$@" $JAVA_OPTIONS $JETTY_PROPERTIES > $JETTY_BASE/jetty.exec
. $JETTY_BASE/jetty.exec
esac
done

Expand Down
3 changes: 2 additions & 1 deletion azul/zulu-openjdk-alpine/9.4/jdk17/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ if expr "$*" : 'java .*/start\.jar.*$' >/dev/null ; then
shift
# The first $JAVA_OPTIONS is for the JVM which will do the --dry-run,
# the second one is used when generating the --dry-run output.
eval "exec $JAVA $JAVA_OPTIONS \"\$@\" $JAVA_OPTIONS $JETTY_PROPERTIES"
echo "exec " $JAVA $JAVA_OPTIONS "$@" $JAVA_OPTIONS $JETTY_PROPERTIES > $JETTY_BASE/jetty.exec
. $JETTY_BASE/jetty.exec
esac
done

Expand Down
3 changes: 2 additions & 1 deletion azul/zulu-openjdk-alpine/9.4/jdk8/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ if expr "$*" : 'java .*/start\.jar.*$' >/dev/null ; then
shift
# The first $JAVA_OPTIONS is for the JVM which will do the --dry-run,
# the second one is used when generating the --dry-run output.
eval "exec $JAVA $JAVA_OPTIONS \"\$@\" $JAVA_OPTIONS $JETTY_PROPERTIES"
echo "exec " $JAVA $JAVA_OPTIONS "$@" $JAVA_OPTIONS $JETTY_PROPERTIES > $JETTY_BASE/jetty.exec
. $JETTY_BASE/jetty.exec
esac
done

Expand Down
3 changes: 2 additions & 1 deletion azul/zulu-openjdk/10.0/jdk11/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ if expr "$*" : 'java .*/start\.jar.*$' >/dev/null ; then
shift
# The first $JAVA_OPTIONS is for the JVM which will do the --dry-run,
# the second one is used when generating the --dry-run output.
eval "exec $JAVA $JAVA_OPTIONS \"\$@\" $JAVA_OPTIONS $JETTY_PROPERTIES"
echo "exec " $JAVA $JAVA_OPTIONS "$@" $JAVA_OPTIONS $JETTY_PROPERTIES > $JETTY_BASE/jetty.exec
. $JETTY_BASE/jetty.exec
esac
done

Expand Down
3 changes: 2 additions & 1 deletion azul/zulu-openjdk/10.0/jdk17/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ if expr "$*" : 'java .*/start\.jar.*$' >/dev/null ; then
shift
# The first $JAVA_OPTIONS is for the JVM which will do the --dry-run,
# the second one is used when generating the --dry-run output.
eval "exec $JAVA $JAVA_OPTIONS \"\$@\" $JAVA_OPTIONS $JETTY_PROPERTIES"
echo "exec " $JAVA $JAVA_OPTIONS "$@" $JAVA_OPTIONS $JETTY_PROPERTIES > $JETTY_BASE/jetty.exec
. $JETTY_BASE/jetty.exec
esac
done

Expand Down
3 changes: 2 additions & 1 deletion azul/zulu-openjdk/11.0/jdk11/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ if expr "$*" : 'java .*/start\.jar.*$' >/dev/null ; then
shift
# The first $JAVA_OPTIONS is for the JVM which will do the --dry-run,
# the second one is used when generating the --dry-run output.
eval "exec $JAVA $JAVA_OPTIONS \"\$@\" $JAVA_OPTIONS $JETTY_PROPERTIES"
echo "exec " $JAVA $JAVA_OPTIONS "$@" $JAVA_OPTIONS $JETTY_PROPERTIES > $JETTY_BASE/jetty.exec
. $JETTY_BASE/jetty.exec
esac
done

Expand Down
3 changes: 2 additions & 1 deletion azul/zulu-openjdk/11.0/jdk17/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ if expr "$*" : 'java .*/start\.jar.*$' >/dev/null ; then
shift
# The first $JAVA_OPTIONS is for the JVM which will do the --dry-run,
# the second one is used when generating the --dry-run output.
eval "exec $JAVA $JAVA_OPTIONS \"\$@\" $JAVA_OPTIONS $JETTY_PROPERTIES"
echo "exec " $JAVA $JAVA_OPTIONS "$@" $JAVA_OPTIONS $JETTY_PROPERTIES > $JETTY_BASE/jetty.exec
. $JETTY_BASE/jetty.exec
esac
done

Expand Down
3 changes: 2 additions & 1 deletion azul/zulu-openjdk/12.0/jdk17/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ if expr "$*" : 'java .*/start\.jar.*$' >/dev/null ; then
shift
# The first $JAVA_OPTIONS is for the JVM which will do the --dry-run,
# the second one is used when generating the --dry-run output.
eval "exec $JAVA $JAVA_OPTIONS \"\$@\" $JAVA_OPTIONS $JETTY_PROPERTIES"
echo "exec " $JAVA $JAVA_OPTIONS "$@" $JAVA_OPTIONS $JETTY_PROPERTIES > $JETTY_BASE/jetty.exec
. $JETTY_BASE/jetty.exec
esac
done

Expand Down
3 changes: 2 additions & 1 deletion azul/zulu-openjdk/9.4/jdk11/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ if expr "$*" : 'java .*/start\.jar.*$' >/dev/null ; then
shift
# The first $JAVA_OPTIONS is for the JVM which will do the --dry-run,
# the second one is used when generating the --dry-run output.
eval "exec $JAVA $JAVA_OPTIONS \"\$@\" $JAVA_OPTIONS $JETTY_PROPERTIES"
echo "exec " $JAVA $JAVA_OPTIONS "$@" $JAVA_OPTIONS $JETTY_PROPERTIES > $JETTY_BASE/jetty.exec
. $JETTY_BASE/jetty.exec
esac
done

Expand Down
3 changes: 2 additions & 1 deletion azul/zulu-openjdk/9.4/jdk17/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ if expr "$*" : 'java .*/start\.jar.*$' >/dev/null ; then
shift
# The first $JAVA_OPTIONS is for the JVM which will do the --dry-run,
# the second one is used when generating the --dry-run output.
eval "exec $JAVA $JAVA_OPTIONS \"\$@\" $JAVA_OPTIONS $JETTY_PROPERTIES"
echo "exec " $JAVA $JAVA_OPTIONS "$@" $JAVA_OPTIONS $JETTY_PROPERTIES > $JETTY_BASE/jetty.exec
. $JETTY_BASE/jetty.exec
esac
done

Expand Down
3 changes: 2 additions & 1 deletion azul/zulu-openjdk/9.4/jdk8/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ if expr "$*" : 'java .*/start\.jar.*$' >/dev/null ; then
shift
# The first $JAVA_OPTIONS is for the JVM which will do the --dry-run,
# the second one is used when generating the --dry-run output.
eval "exec $JAVA $JAVA_OPTIONS \"\$@\" $JAVA_OPTIONS $JETTY_PROPERTIES"
echo "exec " $JAVA $JAVA_OPTIONS "$@" $JAVA_OPTIONS $JETTY_PROPERTIES > $JETTY_BASE/jetty.exec
. $JETTY_BASE/jetty.exec
esac
done

Expand Down
3 changes: 2 additions & 1 deletion docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ if expr "$*" : 'java .*/start\.jar.*$' >/dev/null ; then
shift
# The first $JAVA_OPTIONS is for the JVM which will do the --dry-run,
# the second one is used when generating the --dry-run output.
eval "exec $JAVA $JAVA_OPTIONS \"\$@\" $JAVA_OPTIONS $JETTY_PROPERTIES"
echo "exec " $JAVA $JAVA_OPTIONS "$@" $JAVA_OPTIONS $JETTY_PROPERTIES > $JETTY_BASE/jetty.exec
. $JETTY_BASE/jetty.exec
esac
done

Expand Down
3 changes: 2 additions & 1 deletion eclipse-temurin/10.0/jdk11-alpine/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ if expr "$*" : 'java .*/start\.jar.*$' >/dev/null ; then
shift
# The first $JAVA_OPTIONS is for the JVM which will do the --dry-run,
# the second one is used when generating the --dry-run output.
eval "exec $JAVA $JAVA_OPTIONS \"\$@\" $JAVA_OPTIONS $JETTY_PROPERTIES"
echo "exec " $JAVA $JAVA_OPTIONS "$@" $JAVA_OPTIONS $JETTY_PROPERTIES > $JETTY_BASE/jetty.exec
. $JETTY_BASE/jetty.exec
esac
done

Expand Down
3 changes: 2 additions & 1 deletion eclipse-temurin/10.0/jdk11/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ if expr "$*" : 'java .*/start\.jar.*$' >/dev/null ; then
shift
# The first $JAVA_OPTIONS is for the JVM which will do the --dry-run,
# the second one is used when generating the --dry-run output.
eval "exec $JAVA $JAVA_OPTIONS \"\$@\" $JAVA_OPTIONS $JETTY_PROPERTIES"
echo "exec " $JAVA $JAVA_OPTIONS "$@" $JAVA_OPTIONS $JETTY_PROPERTIES > $JETTY_BASE/jetty.exec
. $JETTY_BASE/jetty.exec
esac
done

Expand Down
3 changes: 2 additions & 1 deletion eclipse-temurin/10.0/jdk17-alpine/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ if expr "$*" : 'java .*/start\.jar.*$' >/dev/null ; then
shift
# The first $JAVA_OPTIONS is for the JVM which will do the --dry-run,
# the second one is used when generating the --dry-run output.
eval "exec $JAVA $JAVA_OPTIONS \"\$@\" $JAVA_OPTIONS $JETTY_PROPERTIES"
echo "exec " $JAVA $JAVA_OPTIONS "$@" $JAVA_OPTIONS $JETTY_PROPERTIES > $JETTY_BASE/jetty.exec
. $JETTY_BASE/jetty.exec
esac
done

Expand Down
3 changes: 2 additions & 1 deletion eclipse-temurin/10.0/jdk17/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ if expr "$*" : 'java .*/start\.jar.*$' >/dev/null ; then
shift
# The first $JAVA_OPTIONS is for the JVM which will do the --dry-run,
# the second one is used when generating the --dry-run output.
eval "exec $JAVA $JAVA_OPTIONS \"\$@\" $JAVA_OPTIONS $JETTY_PROPERTIES"
echo "exec " $JAVA $JAVA_OPTIONS "$@" $JAVA_OPTIONS $JETTY_PROPERTIES > $JETTY_BASE/jetty.exec
. $JETTY_BASE/jetty.exec
esac
done

Expand Down
3 changes: 2 additions & 1 deletion eclipse-temurin/10.0/jre11-alpine/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ if expr "$*" : 'java .*/start\.jar.*$' >/dev/null ; then
shift
# The first $JAVA_OPTIONS is for the JVM which will do the --dry-run,
# the second one is used when generating the --dry-run output.
eval "exec $JAVA $JAVA_OPTIONS \"\$@\" $JAVA_OPTIONS $JETTY_PROPERTIES"
echo "exec " $JAVA $JAVA_OPTIONS "$@" $JAVA_OPTIONS $JETTY_PROPERTIES > $JETTY_BASE/jetty.exec
. $JETTY_BASE/jetty.exec
esac
done

Expand Down
3 changes: 2 additions & 1 deletion eclipse-temurin/10.0/jre11/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ if expr "$*" : 'java .*/start\.jar.*$' >/dev/null ; then
shift
# The first $JAVA_OPTIONS is for the JVM which will do the --dry-run,
# the second one is used when generating the --dry-run output.
eval "exec $JAVA $JAVA_OPTIONS \"\$@\" $JAVA_OPTIONS $JETTY_PROPERTIES"
echo "exec " $JAVA $JAVA_OPTIONS "$@" $JAVA_OPTIONS $JETTY_PROPERTIES > $JETTY_BASE/jetty.exec
. $JETTY_BASE/jetty.exec
esac
done

Expand Down
3 changes: 2 additions & 1 deletion eclipse-temurin/10.0/jre17-alpine/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ if expr "$*" : 'java .*/start\.jar.*$' >/dev/null ; then
shift
# The first $JAVA_OPTIONS is for the JVM which will do the --dry-run,
# the second one is used when generating the --dry-run output.
eval "exec $JAVA $JAVA_OPTIONS \"\$@\" $JAVA_OPTIONS $JETTY_PROPERTIES"
echo "exec " $JAVA $JAVA_OPTIONS "$@" $JAVA_OPTIONS $JETTY_PROPERTIES > $JETTY_BASE/jetty.exec
. $JETTY_BASE/jetty.exec
esac
done

Expand Down
Loading