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_01_master_create_rep_user.sh 246B

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. psql <<-EOF
  8. CREATE USER "${POSTGRES_REP_USER}" REPLICATION LOGIN ENCRYPTED PASSWORD '${POSTGRES_REP_PASSWORD}';
  9. EOF