mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-12-19 22:16:49 +00:00
7 lines
175 B
Bash
7 lines
175 B
Bash
#!/bin/bash
|
|
|
|
sudo -u www-data nc -z "$POSTGRES_HOST" 5432 || exit 0
|
|
|
|
if ! sudo -u www-data nc -z localhost 9000 || ! sudo -u www-data nc -z localhost 7867; then
|
|
exit 1
|
|
fi
|