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