1
0
Fork 0
mirror of https://github.com/Nutomic/ibis.git synced 2024-10-26 18:09:53 +00:00
ibis/tests/scripts/stop_dev_db.sh

9 lines
No EOL
102 B
Bash
Executable file

#!/bin/bash
set -e
export PGHOST=$1
export PGDATA="$1/dev_pgdata"
echo $PGHOST
pg_ctl stop
rm -rf $1