Replace the hardcoded primary pg IP with a hostname

This commit is contained in:
Greg 2021-01-23 17:34:58 +01:00
parent 5cb390f340
commit a4a35da0ff
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ unless primary.nil?
command <<-EOF
systemctl stop #{postgresql_service}
mv #{postgresql_data_dir} #{postgresql_data_dir}.old
pg_basebackup -h 10.1.1.167 -U replication -D #{postgresql_data_dir} -R
pg_basebackup -h pg.kosmos.local -U replication -D #{postgresql_data_dir} -R
chown -R postgres:postgres #{postgresql_data_dir}
systemctl start #{postgresql_service}
EOF