| 1234567891011121314151617181920212223 | #!/bin/bashif [[ "${SKIP_SOGO}" =~ ^([yY][eE][sS]|[yY])+$ ]]; then  echo "SKIP_SOGO=y, skipping SOGo..."  sleep 365d  exit 0fiif [[ ! -z ${REDIS_SLAVEOF_IP} ]]; then  cp /etc/syslog-ng/syslog-ng-redis_slave.conf /etc/syslog-ng/syslog-ng.conffiecho "$TZ" > /etc/timezone# Run hooksfor file in /hooks/*; do  if [ -x "${file}" ]; then    echo "Running hook ${file}"    "${file}"  fidoneexec "$@"
 |