mirror of
https://github.com/nextcloud/all-in-one.git
synced 2024-11-16 03:56:02 +08:00
a56fbb6045
Signed-off-by: Simon L <szaimen@e.mail.de>
6 lines
137 B
Bash
6 lines
137 B
Bash
#!/bin/bash
|
|
|
|
nc -z "$NEXTCLOUD_HOST" 9000 || exit 0
|
|
if [ "$(wget http://127.0.0.1:2375/v1.41/_ping -qO -)" != "OK" ]; then
|
|
exit 1
|
|
fi
|