Fixed timeouts

This commit is contained in:
root 2023-06-28 18:00:53 +00:00
parent 9db748d5e8
commit 56d5311e5e
3 changed files with 3 additions and 3 deletions

View File

@ -65,7 +65,7 @@ echo -ne "done."
}
start_collabora() {
# Start service with command to make sure it's up before proceeding
start_service "collabora" "nc -z 172.99.0.17 9980 &> /dev/null" "7"
start_service "collabora" "nc -z 172.99.0.17 9980 &> /dev/null" "15"
kill -9 $SPINPID &> /dev/null
echo -ne "done."

View File

@ -154,7 +154,7 @@ EOF
}
start_mail() {
# Start service with command to make sure it's up before proceeding
start_service "mail" "nc -z 172.99.0.16 25 &> /dev/null" "9"
start_service "mail" "nc -z 172.99.0.16 25 &> /dev/null" "15"
# Generate the DKIM DNS key and setup
docker exec mail setup config dkim

View File

@ -103,7 +103,7 @@ echo -ne "done."
}
start_postgresql() {
# Start service with command to make sure it's up before proceeding
start_service "postgresql" "nc -z 172.99.0.14 5432 &> /dev/null" "8"
start_service "postgresql" "nc -z 172.99.0.14 5432 &> /dev/null" "18"
# Tune PostgreSQL
sed -i "s#shared_buffers =.*#shared_buffers = 800MB#g" /federated/apps/postgresql/data/var/lib/postgresql/data/postgresql.conf