##// END OF EJS Templates
docker: added all the initial docker files...
docker: added all the initial docker files compose: added initial setup - fix db password secret, fix SVN as aservice 4.24.0 changes Docker: fixes for 4.24.X deployment Setup: added final fixes Config files cleanups Fix license fix

File last commit:

r1:29323844
r1:29323844
Show More
svn-entrypoint.sh
14 lines | 285 B | application/x-sh | BashLexer
#!/usr/bin/env bash
set -Eeo pipefail
BOOTSTRAP_FILE=.bootstrapped
# Avoid destroying bootstrapping by simple start/stop
if [[ ! -e /.$BOOTSTRAP_FILE ]]; then
echo "ENTRYPOINT: Starting $RC_APP_TYPE bootstrap"
touch $MOD_DAV_SVN_CONF_FILE
touch /$BOOTSTRAP_FILE
fi
exec "$@"