You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1.1.0_25_master_edit_pg_hba_conf.sh 278B

1234567891011
  1. #! /usr/bin/env bash
  2. if [ "${POSTGRES_MASTER_MODE}" != 1 ]
  3. then
  4. echo "Database is not in master mode. Exiting."
  5. exit 0
  6. fi
  7. cat <<-EOF >> /var/lib/postgresql/data/pg_hba.conf
  8. host replication ${POSTGRES_REP_USER} ${POSTGRES_REP_ALLOWED_HOST} md5
  9. EOF