fix: add default case for POSTGRES_LOG_MIN_MESSAGES to prevent postgresql.conf syntax error

Agent-Logs-Url: https://github.com/nextcloud/all-in-one/sessions/b6d616e7-dd6d-409e-be83-4fbe7e20da50

Co-authored-by: szaimen <42591237+szaimen@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-05-14 18:27:26 +00:00
committed by GitHub
parent 19b94f40d5
commit d9d1250ba8

View File

@@ -9,6 +9,7 @@ POSTGRES_LOG_MIN_MESSAGES="$(case "$AIO_LOG_LEVEL" in
info) printf 'info' ;;
warn) printf 'warning' ;;
error) printf 'error' ;;
*) printf 'warning' ;;
esac)"
export POSTGRES_LOG_MIN_MESSAGES