mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-12-20 06:26:57 +00:00
8 lines
99 B
Bash
8 lines
99 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
if ! nc -z "$NEXTCLOUD_HOST" 9000; then
|
||
|
|
exit 0
|
||
|
|
fi
|
||
|
|
|
||
|
|
nc -z localhost 7867 || exit 1
|