Skip to content

Commit

Permalink
USER_HOST is not relevant to PostgreSQL
Browse files Browse the repository at this point in the history
  • Loading branch information
robstradling committed Nov 14, 2024
1 parent 1ca52fa commit a7d3778
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions scripts/resetpgdb.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@ Accepts environment variables:
- POSTGRESQL_USER: The name to give to the new Trillian user (default: test).
- POSTGRESQL_PASSWORD: The password to use for the new Trillian user
(default: zaphod).
- POSTGRESQL_USER_HOST: The host that the Trillian user will connect from; use '%' as
a wildcard (default: localhost).
- POSTGRESQL_IN_CONTAINER: If set, the script will assume it is running in a Docker
container and will exec into the container to operate (default: false).
- POSTGRESQL_CONTAINER_NAME: The name of the Docker container to exec into (default:
Expand All @@ -39,7 +37,6 @@ collect_vars() {
[ -z ${POSTGRESQL_DATABASE+x} ] && POSTGRESQL_DATABASE="defaultdb"
[ -z ${POSTGRESQL_USER+x} ] && POSTGRESQL_USER="test"
[ -z ${POSTGRESQL_PASSWORD+x} ] && POSTGRESQL_PASSWORD="zaphod"
[ -z ${POSTGRESQL_USER_HOST+x} ] && POSTGRESQL_USER_HOST="localhost"
[ -z ${POSTGRESQL_INSECURE+x} ] && POSTGRESQL_INSECURE="true"
[ -z ${POSTGRESQL_IN_CONTAINER+x} ] && POSTGRESQL_IN_CONTAINER="false"
[ -z ${POSTGRESQL_CONTAINER_NAME+x} ] && POSTGRESQL_CONTAINER_NAME="pgsql"
Expand Down

0 comments on commit a7d3778

Please sign in to comment.