1
0
Fork 0
mirror of https://github.com/overleaf/toolkit.git synced 2025-04-19 23:38:06 +02:00

Merge pull request #37 from overleaf/ae-doctor-data-paths

Add data paths to doctor output
This commit is contained in:
Alf Eaton 2021-02-16 09:32:41 +00:00 committed by GitHub
commit caeea8c5ea
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -202,6 +202,9 @@ function check_config_files() {
if [[ "${MONGO_IMAGE:-null}" != "null" ]]; then
print_point 2 "MONGO_IMAGE: $MONGO_IMAGE"
fi
if [[ "${MONGO_DATA_PATH:-null}" != "null" ]]; then
print_point 2 "MONGO_DATA_PATH: $MONGO_DATA_PATH"
fi
print_point 2 "REDIS_ENABLED: $REDIS_ENABLED"
if [[ "${REDIS_HOST:-null}" != "null" ]]; then
@ -213,6 +216,9 @@ function check_config_files() {
if [[ "${REDIS_IMAGE:-null}" != "null" ]]; then
print_point 2 "REDIS_IMAGE: $REDIS_IMAGE"
fi
if [[ "${REDIS_DATA_PATH:-null}" != "null" ]]; then
print_point 2 "REDIS_DATA_PATH: $REDIS_DATA_PATH"
fi
fi
fi
done