mirror of
https://github.com/nextcloud/all-in-one.git
synced 2026-05-21 10:50:10 +00:00
9 lines
138 B
Bash
9 lines
138 B
Bash
#!/bin/bash
|
|
|
|
if [ "$AIO_LOG_LEVEL" = 'debug' ]; then
|
|
set -x
|
|
fi
|
|
|
|
nc -z "$NEXTCLOUD_HOST" 9001 || exit 0
|
|
nc -z 127.0.0.1 2375 || exit 1
|