rename prestart to init

This commit is contained in:
deflax 2025-02-08 23:48:30 +00:00
parent 66a7f5f3bc
commit a9b798171a
2 changed files with 2 additions and 2 deletions

View file

@ -2,8 +2,8 @@
set -e
# If there's a prestart.sh script in the /app directory, run it before starting
PRE_START_PATH=/app/prestart.sh
# If there's a init.sh script in the /app directory, run it before starting
PRE_START_PATH=/app/init.sh
if [ -f $PRE_START_PATH ] ; then
. "$PRE_START_PATH"
else