mirror of
https://github.com/nextcloud/all-in-one.git
synced 2024-11-15 03:24:48 +08:00
414716e279
Signed-off-by: Simon L <szaimen@e.mail.de>
7 lines
99 B
Bash
7 lines
99 B
Bash
#!/bin/bash
|
|
|
|
if ! nc -z "$NEXTCLOUD_HOST" 9001; then
|
|
exit 0
|
|
fi
|
|
|
|
nc -z 127.0.0.1 7867 || exit 1
|