1
0
mirror of https://github.com/mailcow/mailcow-dockerized.git synced 2025-01-24 05:16:55 +02:00
2020-02-19 21:41:06 +01:00

16 lines
266 B
Bash
Executable File

#!/bin/bash
# Run hooks
for file in /hooks/*; do
if [ -x "${file}" ]; then
echo "Running hook ${file}"
"${file}"
fi
done
if [[ ! -z ${REDIS_SLAVEOF_IP} ]]; then
cp /etc/syslog-ng/syslog-ng-redis_slave.conf /etc/syslog-ng/syslog-ng.conf
fi
exec "$@"