mirror of
https://github.com/nextcloud/all-in-one.git
synced 2026-05-31 16:00:09 +00:00
Agent-Logs-Url: https://github.com/nextcloud/all-in-one/sessions/6f198732-63c3-41b7-8b2e-1b5fa565ee21 Co-authored-by: szaimen <42591237+szaimen@users.noreply.github.com>
7 lines
117 B
Bash
7 lines
117 B
Bash
#!/bin/bash
|
|
|
|
# Check if Windmill is accepting connections on port 8000
|
|
if ! nc -z localhost 8000; then
|
|
exit 1
|
|
fi
|