mirror of
https://github.com/nextcloud/all-in-one.git
synced 2026-05-30 07:20:09 +00:00
Agent-Logs-Url: https://github.com/nextcloud/all-in-one/sessions/7fd39619-0f63-494c-902c-746f00d17d02 Co-Authored-By: szaimen <42591237+szaimen@users.noreply.github.com> Signed-off-by: Simon L. <szaimen@e.mail.de>
11 lines
387 B
Bash
11 lines
387 B
Bash
#!/bin/bash
|
|
|
|
nc -z 127.0.0.1 8081 || exit 1
|
|
nc -z 127.0.0.1 8188 || exit 1
|
|
nc -z 127.0.0.1 4222 || exit 1
|
|
nc -z 127.0.0.1 "$TALK_PORT" || exit 1
|
|
eturnalctl status || exit 1
|
|
# Verify that the signaling server is actually serving requests, not just
|
|
# listening on the TCP port (which nc -z above only tests for open port).
|
|
wget -q -O /dev/null http://127.0.0.1:8081/api/v1/stats || exit 1
|