mirror of
https://github.com/overleaf/overleaf.git
synced 2025-12-05 01:10:29 +00:00
9 lines
274 B
Bash
Executable File
9 lines
274 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
echo "Checking can connect to mongo and redis"
|
|
cd /overleaf/services/web
|
|
/sbin/setuser www-data node modules/server-ce-scripts/scripts/check-mongodb.mjs
|
|
/sbin/setuser www-data node modules/server-ce-scripts/scripts/check-redis.mjs
|
|
echo "All checks passed"
|