mirror of
https://github.com/nextcloud/all-in-one.git
synced 2024-11-15 19:44:31 +08:00
8cb1d413f8
Signed-off-by: Simon L <szaimen@e.mail.de>
6 lines
98 B
Bash
6 lines
98 B
Bash
#!/bin/bash
|
|
|
|
nc -z "$NEXTCLOUD_HOST" 9000 || exit 0
|
|
if ! nc -z localhost 2375; then
|
|
exit 1
|
|
fi
|