init_hba.sh 171 B

1234567
  1. #!/bin/bash
  2. # Initializes the pg_hba file with access permissions to the replication
  3. # slots.
  4. set -e
  5. { echo "host replication all all trust"; } >> "$PGDATA/pg_hba.conf"