mirror of
https://github.com/getsentry/self-hosted.git
synced 2025-12-08 19:46:14 +00:00
8 lines
170 B
Bash
Executable File
8 lines
170 B
Bash
Executable File
#!/bin/bash
|
|
# Initializes the pg_hba file with access permissions to the replication
|
|
# slots.
|
|
|
|
set -e
|
|
|
|
{ echo "host replication all all trust"; } >>"$PGDATA/pg_hba.conf"
|