mirror of
https://github.com/nextcloud/all-in-one.git
synced 2026-06-10 16:38:18 +00:00
f80f888d6c
Signed-off-by: Simon L. <szaimen@e.mail.de>
9 lines
143 B
Bash
9 lines
143 B
Bash
#!/bin/bash
|
|
|
|
if [ "$AIO_LOG_LEVEL" = 'debug' ]; then
|
|
set -x
|
|
fi
|
|
|
|
nc -z "$REDIS_HOST" "$REDIS_PORT" || exit 0
|
|
nc -z 127.0.0.1 3002 || exit 1
|