mirror of https://github.com/ekimekim/wubloader
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
480 B
Bash
24 lines
480 B
Bash
#! /bin/bash
|
|
|
|
|
|
if [ ! -s "$PGDATA/PG_VERSION" ]; then
|
|
|
|
pg_basebackup -d "host=$MASTER_NODE password=$REPLICATION_PASSWORD port=5432 user=$REPLICATION_USER" -D ${PGDATA} -vP
|
|
|
|
set -e
|
|
|
|
cat > ${PGDATA}/recovery.conf <<EOF
|
|
|
|
standby_mode = on
|
|
primary_conninfo = 'host=$MASTER_NODE password=$REPLICATION_PASSWORD port=5432 user=$REPLICATION_USER'
|
|
trigger_file = '/tmp/touch_to_promote_to_master'
|
|
|
|
EOF
|
|
|
|
chown postgres. ${PGDATA} -R
|
|
chmod 700 ${PGDATA} -R
|
|
|
|
fi
|
|
|
|
gosu postgres postgres
|