diff --git a/docker-entrypoint.sh b/docker-entrypoint.sh index c6a2cd2..c834ad2 100644 --- a/docker-entrypoint.sh +++ b/docker-entrypoint.sh @@ -104,7 +104,7 @@ docker_init_database_dir() { # assumes database is not set up, ie: [ -z "$DATABASE_ALREADY_EXISTS" ] docker_verify_minimum_env() { case "${PG_MAJOR:-}" in - 12 | 13) # https://github.com/postgres/postgres/commit/67a472d71c98c3d2fa322a1b4013080b20720b98 + 13) # https://github.com/postgres/postgres/commit/67a472d71c98c3d2fa322a1b4013080b20720b98 # check password first so we can output the warning before postgres # messes it up if [ "${#POSTGRES_PASSWORD}" -ge 100 ]; then @@ -252,7 +252,7 @@ pg_setup_hba_conf() { printf '\n' if [ 'trust' = "$POSTGRES_HOST_AUTH_METHOD" ]; then printf '# warning trust is enabled for all connections\n' - printf '# see https://www.postgresql.org/docs/12/auth-trust.html\n' + printf '# see https://www.postgresql.org/docs/17/auth-trust.html\n' fi printf 'host all all all %s\n' "$POSTGRES_HOST_AUTH_METHOD" } >> "$PGDATA/pg_hba.conf" diff --git a/postgres-14-image.changes b/postgres-14-image.changes index c7f12e5..820e3c8 100644 --- a/postgres-14-image.changes +++ b/postgres-14-image.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Wed Feb 5 10:30:31 UTC 2025 - SUSE Update Bot + +- remove handling for outdated postgresql versions + ------------------------------------------------------------------- Wed Jan 29 14:06:29 UTC 2025 - SUSE Update Bot