Unverified Commit 1be8478d authored by Mario Rodas's avatar Mario Rodas Committed by GitHub
Browse files

Merge pull request #283080 from marsam/postgresql-test-hook-settings

postgresqlTestHook: add postgresqlExtraSettings variable
parents 451b9705 70b51d8d
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -45,6 +45,7 @@ Bash-only variables:
 - `postgresqlTestSetupCommands`: bash commands to run after database start, defaults to running `$postgresqlTestSetupSQL` as database administrator.
 - `postgresqlEnableTCP`: set to `1` to enable TCP listening. Flaky; not recommended.
 - `postgresqlStartCommands`: defaults to `pg_ctl start`.
 - `postgresqlExtraSettings`: Additional configuration to add to `postgresql.conf`

## Hooks {#sec-postgresqlTestHook-hooks}

+2 −0
Original line number Diff line number Diff line
@@ -56,6 +56,8 @@ EOF
  echo 'initializing postgresql'
  initdb -U postgres

  echo "$postgresqlExtraSettings" >>"$PGDATA/postgresql.conf"

  # Move the socket
  echo "unix_socket_directories = '$NIX_BUILD_TOP/run/postgresql'" >>"$PGDATA/postgresql.conf"