From a6d560eb101937ba90bc610d5c7c38225b65b8aa Mon Sep 17 00:00:00 2001 From: Stephan D Date: Sat, 28 Feb 2026 23:22:53 +0100 Subject: [PATCH 1/2] fixed entrypoint command --- api/edge/callbacks/entrypoint.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/api/edge/callbacks/entrypoint.sh b/api/edge/callbacks/entrypoint.sh index b3a445f1..0e1587f6 100755 --- a/api/edge/callbacks/entrypoint.sh +++ b/api/edge/callbacks/entrypoint.sh @@ -12,4 +12,8 @@ if [ -z "${VAULT_TOKEN:-}" ]; then echo "[entrypoint] VAULT_TOKEN is not set; expected Vault Agent sink to write a token to ${VAULT_TOKEN_FILE:-/run/vault/token}" >&2 fi -exec "$@" +if [ "$#" -gt 0 ] && [ "${1#-}" != "${1}" ]; then + set -- /app/callbacks "$@" +fi + +exec "/app/callbacks" "$@" -- 2.49.1 From f914575a6544abf854898f6e3ce0d26adc8c233f Mon Sep 17 00:00:00 2001 From: Stephan D Date: Sun, 1 Mar 2026 00:08:05 +0100 Subject: [PATCH 2/2] fixed entrypoint command --- api/edge/callbacks/entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/edge/callbacks/entrypoint.sh b/api/edge/callbacks/entrypoint.sh index 0e1587f6..b9c2d55d 100755 --- a/api/edge/callbacks/entrypoint.sh +++ b/api/edge/callbacks/entrypoint.sh @@ -16,4 +16,4 @@ if [ "$#" -gt 0 ] && [ "${1#-}" != "${1}" ]; then set -- /app/callbacks "$@" fi -exec "/app/callbacks" "$@" +exec /app/callbacks "$@" -- 2.49.1