mirror of
https://github.com/Nutomic/ibis.git
synced 2024-11-22 20:01:10 +00:00
9 lines
93 B
Bash
9 lines
93 B
Bash
|
#!/bin/bash
|
||
|
set -e
|
||
|
|
||
|
export PGHOST=$1
|
||
|
export PGDATA="$1/dev_pgdata"
|
||
|
echo $PGHOST
|
||
|
|
||
|
pg_ctl stop
|