mirror of
https://github.com/nextcloud/all-in-one.git
synced 2026-07-22 06:02:54 +00:00
81dd6bbc72
Signed-off-by: Simon L. <szaimen@e.mail.de>
6 lines
124 B
Bash
6 lines
124 B
Bash
#!/bin/bash
|
|
|
|
nc -z "$NEXTCLOUD_HOST" 9000 || exit 0
|
|
nc -z 127.0.0.1 8000 || exit 1
|
|
nc -z 127.0.0.1 "$APACHE_PORT" || exit 1
|