mirror of
https://github.com/mailcow/mailcow-dockerized.git
synced 2025-12-19 21:01:31 +00:00
21 lines
400 B
Bash
21 lines
400 B
Bash
#!/bin/bash
|
|
|
|
# Run hooks
|
|
for file in /hooks/*; do
|
|
if [ -x "${file}" ]; then
|
|
echo "Running hook ${file}"
|
|
"${file}"
|
|
fi
|
|
done
|
|
|
|
python3 -u /bootstrap/main.py
|
|
BOOTSTRAP_EXIT_CODE=$?
|
|
|
|
if [ $BOOTSTRAP_EXIT_CODE -ne 0 ]; then
|
|
echo "Bootstrap failed with exit code $BOOTSTRAP_EXIT_CODE. Not starting Clamd."
|
|
exit $BOOTSTRAP_EXIT_CODE
|
|
fi
|
|
|
|
echo "Bootstrap succeeded. Starting Clamd..."
|
|
exec "$@"
|