rust-postgres/travis/setup.sh

13 lines
269 B
Bash
Raw Normal View History

2013-10-08 06:34:59 +00:00
#!/bin/bash
2013-10-08 07:18:36 +00:00
set -e
2013-10-08 06:34:59 +00:00
cd "$(dirname "$0")"
psql -U postgres < setup.sql
sudo cp pg_hba.conf $(psql -U postgres -c "SHOW hba_file" -At)
DATA_DIR=$(psql -U postgres -c "SHOW data_directory" -At)
PG_PID=$(sudo head -n1 $DATA_DIR/postmaster.pid)
sudo kill -SIGHUP $PG_PID