mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-07 10:04:27 +00:00
18 lines
230 B
Bash
Executable File
18 lines
230 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ -d /bootstrap/entrypoint.d ]; then
|
|
for i in /bootstrap/entrypoint.d/*.sh; do
|
|
if [ -r $i ]; then
|
|
. $i
|
|
fi
|
|
done
|
|
unset i
|
|
fi
|
|
|
|
if [ ! -t 1 ] ; then
|
|
echo "No tty available."
|
|
exit 0
|
|
fi
|
|
|
|
exec "$@"
|