10.3.2-debian-10-r10 release

This commit is contained in:
Bitnami Bot
2020-02-04 18:31:07 +00:00
parent f8b285d4e2
commit 178ef09854
3 changed files with 4 additions and 4 deletions

View File

@@ -2,7 +2,7 @@
. /opt/bitnami/base/functions
if [[ -d /docker-entrypoint-init.d ]] && [[ ! -f /bitnami/"$BITNAMI_APP_NAME"/.user_scripts_initialized ]]; then
if [[ -d /docker-entrypoint-init.d ]] && [[ ! -f "/bitnami/$BITNAMI_APP_NAME/.user_scripts_initialized" ]]; then
for f in /docker-entrypoint-init.d/*; do
failure=0
case "$f" in
@@ -42,5 +42,5 @@ if [[ -d /docker-entrypoint-init.d ]] && [[ ! -f /bitnami/"$BITNAMI_APP_NAME"/.u
fi
done
info "Custom scripts were executed"
touch /bitnami/"$BITNAMI_APP_NAME"/.user_scripts_initialized
touch "/bitnami/$BITNAMI_APP_NAME/.user_scripts_initialized"
fi