mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-12-19 22:16:49 +00:00
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
|