ansible-role-postgresql/templates/pgpool_remote_start.j2

9 lines
267 B
Plaintext
Raw Normal View History

2020-06-03 19:53:13 +02:00
#!/bin/bash
DEST=$1
DESTDIR=$2
# Deploy a base backup
ssh -T $DEST 'cd {{ psql_data_root_dir }}; tar zxf pgsql.tar.gz' 2>/dev/null 1>/dev/null < /dev/null
2020-06-03 19:53:13 +02:00
# Startup PostgreSQL server
ssh -T $DEST sudo /etc/init.d/postgresql start 2>/dev/null 1>/dev/null < /dev/null