Skip to content
This repository was archived by the owner on Nov 26, 2024. It is now read-only.

Commit f90f58e

Browse files
committed
Do not overwrite EXTRA_PARAMS flags on entrypoint
1 parent b037d67 commit f90f58e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

entrypoint.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ if [[ ! -z "${TEST_CERT}" ]]; then
66
fi;
77

88
if [[ ! -z "${ALLOW_SELF_SIGNED_CERT_KONG}" ]]; then
9-
EXTRA_PARAMS="--allow-self-signed-cert-kong"
9+
EXTRA_PARAMS="${EXTRA_PARAMS} --allow-self-signed-cert-kong"
1010
fi;
1111

12-
exec /workdir/certbot-agent certs:update ${EXTRA_PARAMS} ${KONG_ENDPOINT} ${EMAIL} ${DOMAINS}
12+
echo /workdir/certbot-agent certs:update ${EXTRA_PARAMS} ${KONG_ENDPOINT} ${EMAIL} ${DOMAINS}

0 commit comments

Comments
 (0)