mirror of
https://github.com/nextcloud/all-in-one.git
synced 2026-05-30 15:30:08 +00:00
Agent-Logs-Url: https://github.com/nextcloud/all-in-one/sessions/505f902b-a447-4fcc-9203-f11119207409 Co-authored-by: szaimen <42591237+szaimen@users.noreply.github.com>
12 lines
258 B
Bash
12 lines
258 B
Bash
#!/bin/bash
|
|
|
|
# Check if PostgreSQL is accepting connections on the Unix socket
|
|
if ! pg_isready -h /var/run/postgresql -q 2>/dev/null; then
|
|
exit 1
|
|
fi
|
|
|
|
# Check if Windmill is accepting connections on port 8000
|
|
if ! nc -z localhost 8000; then
|
|
exit 1
|
|
fi
|